Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

tests.c 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. FILE_LICENCE ( GPL2_OR_LATER );
  20. /** @file
  21. *
  22. * Self-test collection
  23. *
  24. */
  25. /* Drag in all applicable self-tests */
  26. REQUIRE_OBJECT ( memset_test );
  27. REQUIRE_OBJECT ( memcpy_test );
  28. REQUIRE_OBJECT ( string_test );
  29. REQUIRE_OBJECT ( math_test );
  30. REQUIRE_OBJECT ( vsprintf_test );
  31. REQUIRE_OBJECT ( list_test );
  32. REQUIRE_OBJECT ( byteswap_test );
  33. REQUIRE_OBJECT ( base64_test );
  34. REQUIRE_OBJECT ( base16_test );
  35. REQUIRE_OBJECT ( settings_test );
  36. REQUIRE_OBJECT ( time_test );
  37. REQUIRE_OBJECT ( tcpip_test );
  38. REQUIRE_OBJECT ( ipv6_test );
  39. REQUIRE_OBJECT ( crc32_test );
  40. REQUIRE_OBJECT ( md5_test );
  41. REQUIRE_OBJECT ( sha1_test );
  42. REQUIRE_OBJECT ( sha256_test );
  43. REQUIRE_OBJECT ( aes_cbc_test );
  44. REQUIRE_OBJECT ( hmac_drbg_test );
  45. REQUIRE_OBJECT ( hash_df_test );
  46. REQUIRE_OBJECT ( bigint_test );
  47. REQUIRE_OBJECT ( rsa_test );
  48. REQUIRE_OBJECT ( x509_test );
  49. REQUIRE_OBJECT ( ocsp_test );
  50. REQUIRE_OBJECT ( cms_test );
  51. REQUIRE_OBJECT ( pnm_test );
  52. REQUIRE_OBJECT ( deflate_test );
  53. REQUIRE_OBJECT ( png_test );
  54. REQUIRE_OBJECT ( dns_test );
  55. REQUIRE_OBJECT ( uri_test );
  56. REQUIRE_OBJECT ( profile_test );