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 
8 #include "includes.h"
9 
10 #include "../test_helper/test_helper.h"
11 
12 void sshkey_tests(void);
13 void sshkey_file_tests(void);
14 void sshkey_fuzz_tests(void);
15 
16 void
tests(void)17 tests(void)
18 {
19 	sshkey_tests();
20 	sshkey_file_tests();
21 	sshkey_fuzz_tests();
22 }
23