tests.c 375 B

1234567891011121314151617181920212223
  1. /* $OpenBSD: tests.c,v 1.1 2014/06/24 01:14:18 djm Exp $ */
  2. /*
  3. * Regress test for sshbuf.h buffer API
  4. *
  5. * Placed in the public domain
  6. */
  7. #include "includes.h"
  8. #include "../test_helper/test_helper.h"
  9. void sshkey_tests(void);
  10. void sshkey_file_tests(void);
  11. void sshkey_fuzz_tests(void);
  12. void
  13. tests(void)
  14. {
  15. sshkey_tests();
  16. sshkey_file_tests();
  17. sshkey_fuzz_tests();
  18. }