xref: /openbsd-src/regress/usr.bin/ssh/unittests/kex/tests.c (revision f2a19305cfc49ea4d1a5feb55cd6c283c6f1e031)
1 /* 	$OpenBSD: tests.c,v 1.3 2023/03/06 12:15:47 dtucker Exp $ */
2 /*
3  * Placed in the public domain
4  */
5 
6 #include "test_helper.h"
7 
8 void kex_tests(void);
9 void kex_proposal_tests(void);
10 void kex_proposal_populate_tests(void);
11 
12 void
13 tests(void)
14 {
15 	kex_tests();
16 	kex_proposal_tests();
17 	kex_proposal_populate_tests();
18 }
19