diff options
author | markus@openbsd.org <markus@openbsd.org> | 2015-01-15 23:41:29 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-20 00:22:50 +1100 |
commit | 9e06a0fb23ec55d9223b26a45bb63c7649e2f2f2 (patch) | |
tree | e17a3ea6a160e205c044f3b70fd64f76088540bd /regress/unittests/kex/tests.c | |
parent | d2099dec6da21ae627f6289aedae6bc1d41a22ce (diff) |
upstream commit
add kex unit tests
Diffstat (limited to 'regress/unittests/kex/tests.c')
-rw-r--r-- | regress/unittests/kex/tests.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/regress/unittests/kex/tests.c b/regress/unittests/kex/tests.c new file mode 100644 index 000000000..1e519fe4b --- /dev/null +++ b/regress/unittests/kex/tests.c | |||
@@ -0,0 +1,14 @@ | |||
1 | /* $OpenBSD: tests.c,v 1.1 2015/01/15 23:41:29 markus Exp $ */ | ||
2 | /* | ||
3 | * Placed in the public domain | ||
4 | */ | ||
5 | |||
6 | #include "test_helper.h" | ||
7 | |||
8 | void kex_tests(void); | ||
9 | |||
10 | void | ||
11 | tests(void) | ||
12 | { | ||
13 | kex_tests(); | ||
14 | } | ||