Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / ipxe / src / tests / tests.c
1 /*
2  * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  */
19
20 FILE_LICENCE ( GPL2_OR_LATER );
21
22 /** @file
23  *
24  * Self-test collection
25  *
26  */
27
28 /* Drag in all applicable self-tests */
29 REQUIRE_OBJECT ( memcpy_test );
30 REQUIRE_OBJECT ( string_test );
31 REQUIRE_OBJECT ( math_test );
32 REQUIRE_OBJECT ( vsprintf_test );
33 REQUIRE_OBJECT ( list_test );
34 REQUIRE_OBJECT ( byteswap_test );
35 REQUIRE_OBJECT ( base64_test );
36 REQUIRE_OBJECT ( base16_test );
37 REQUIRE_OBJECT ( settings_test );
38 REQUIRE_OBJECT ( time_test );
39 REQUIRE_OBJECT ( tcpip_test );
40 REQUIRE_OBJECT ( ipv6_test );
41 REQUIRE_OBJECT ( crc32_test );
42 REQUIRE_OBJECT ( md5_test );
43 REQUIRE_OBJECT ( sha1_test );
44 REQUIRE_OBJECT ( sha256_test );
45 REQUIRE_OBJECT ( aes_cbc_test );
46 REQUIRE_OBJECT ( hmac_drbg_test );
47 REQUIRE_OBJECT ( hash_df_test );
48 REQUIRE_OBJECT ( bigint_test );
49 REQUIRE_OBJECT ( rsa_test );
50 REQUIRE_OBJECT ( x509_test );
51 REQUIRE_OBJECT ( ocsp_test );
52 REQUIRE_OBJECT ( cms_test );
53 REQUIRE_OBJECT ( pnm_test );
54 REQUIRE_OBJECT ( deflate_test );
55 REQUIRE_OBJECT ( png_test );
56 REQUIRE_OBJECT ( dns_test );
57 REQUIRE_OBJECT ( uri_test );
58 REQUIRE_OBJECT ( profile_test );