summaryrefslogtreecommitdiff
path: root/regress/unittests/hostkeys/tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'regress/unittests/hostkeys/tests.c')
-rw-r--r--regress/unittests/hostkeys/tests.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/regress/unittests/hostkeys/tests.c b/regress/unittests/hostkeys/tests.c
new file mode 100644
index 000000000..92c7646ad
--- /dev/null
+++ b/regress/unittests/hostkeys/tests.c
@@ -0,0 +1,16 @@
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
8void tests(void);
9void test_iterate(void); /* test_iterate.c */
10
11void
12tests(void)
13{
14 test_iterate();
15}
16