You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tests.c 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. * You can also choose to distribute this program under the terms of
  20. * the Unmodified Binary Distribution Licence (as given in the file
  21. * COPYING.UBDL), provided that you have satisfied its requirements.
  22. */
  23. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  24. /** @file
  25. *
  26. * Self-test collection
  27. *
  28. */
  29. /* Drag in all applicable self-tests */
  30. PROVIDE_REQUIRING_SYMBOL();
  31. REQUIRE_OBJECT ( memset_test );
  32. REQUIRE_OBJECT ( memcpy_test );
  33. REQUIRE_OBJECT ( string_test );
  34. REQUIRE_OBJECT ( math_test );
  35. REQUIRE_OBJECT ( vsprintf_test );
  36. REQUIRE_OBJECT ( list_test );
  37. REQUIRE_OBJECT ( byteswap_test );
  38. REQUIRE_OBJECT ( base64_test );
  39. REQUIRE_OBJECT ( base16_test );
  40. REQUIRE_OBJECT ( settings_test );
  41. REQUIRE_OBJECT ( time_test );
  42. REQUIRE_OBJECT ( tcpip_test );
  43. REQUIRE_OBJECT ( ipv4_test );
  44. REQUIRE_OBJECT ( ipv6_test );
  45. REQUIRE_OBJECT ( crc32_test );
  46. REQUIRE_OBJECT ( md4_test );
  47. REQUIRE_OBJECT ( md5_test );
  48. REQUIRE_OBJECT ( sha1_test );
  49. REQUIRE_OBJECT ( sha256_test );
  50. REQUIRE_OBJECT ( sha512_test );
  51. REQUIRE_OBJECT ( aes_test );
  52. REQUIRE_OBJECT ( hmac_drbg_test );
  53. REQUIRE_OBJECT ( hash_df_test );
  54. REQUIRE_OBJECT ( bigint_test );
  55. REQUIRE_OBJECT ( rsa_test );
  56. REQUIRE_OBJECT ( x509_test );
  57. REQUIRE_OBJECT ( ocsp_test );
  58. REQUIRE_OBJECT ( cms_test );
  59. REQUIRE_OBJECT ( pnm_test );
  60. REQUIRE_OBJECT ( deflate_test );
  61. REQUIRE_OBJECT ( png_test );
  62. REQUIRE_OBJECT ( dns_test );
  63. REQUIRE_OBJECT ( uri_test );
  64. REQUIRE_OBJECT ( profile_test );
  65. REQUIRE_OBJECT ( setjmp_test );
  66. REQUIRE_OBJECT ( pccrc_test );
  67. REQUIRE_OBJECT ( linebuf_test );
  68. REQUIRE_OBJECT ( iobuf_test );
  69. REQUIRE_OBJECT ( bitops_test );
  70. REQUIRE_OBJECT ( der_test );
  71. REQUIRE_OBJECT ( pem_test );
  72. REQUIRE_OBJECT ( ntlm_test );