xref: /openbsd-src/regress/usr.bin/ssh/unittests/hostkeys/tests.c (revision fd82196b1df6253705e3136b7a25f816fa12d6d9)
1 /* 	$OpenBSD: tests.c,v 1.1 2015/02/16 22:18:34 djm Exp $ */
2 /*
3  * Regress test for known_hosts-related API.
4  *
5  * Placed in the public domain
6  */
7 
8 void tests(void);
9 void test_iterate(void); /* test_iterate.c */
10 
11 void
tests(void)12 tests(void)
13 {
14 	test_iterate();
15 }
16 
17