diff options
author | Damien Miller <djm@mindrot.org> | 2014-05-15 18:01:01 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-05-15 18:01:01 +1000 |
commit | e7429f2be8643e1100380a8a7389d85cc286c8fe (patch) | |
tree | 1d4b68573fb31a573907aef5cb9dcab57b2db333 /regress/unittests/test_helper | |
parent | def1de086707b0e6b046fe7e115c60aca0227a99 (diff) |
- (djm) [regress/Makefile Makefile.in]
[regress/unittests/sshbuf/test_sshbuf.c
[regress/unittests/sshbuf/test_sshbuf_fixed.c]
[regress/unittests/sshbuf/test_sshbuf_fuzz.c]
[regress/unittests/sshbuf/test_sshbuf_getput_basic.c]
[regress/unittests/sshbuf/test_sshbuf_getput_crypto.c]
[regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c]
[regress/unittests/sshbuf/test_sshbuf_misc.c]
[regress/unittests/sshbuf/tests.c]
[regress/unittests/test_helper/fuzz.c]
[regress/unittests/test_helper/test_helper.c]
Hook new unit tests into the build and "make tests"
Diffstat (limited to 'regress/unittests/test_helper')
-rw-r--r-- | regress/unittests/test_helper/fuzz.c | 2 | ||||
-rw-r--r-- | regress/unittests/test_helper/test_helper.c | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/regress/unittests/test_helper/fuzz.c b/regress/unittests/test_helper/fuzz.c index b64af24ed..63b2370d2 100644 --- a/regress/unittests/test_helper/fuzz.c +++ b/regress/unittests/test_helper/fuzz.c | |||
@@ -17,6 +17,8 @@ | |||
17 | 17 | ||
18 | /* Utility functions/framework for fuzz tests */ | 18 | /* Utility functions/framework for fuzz tests */ |
19 | 19 | ||
20 | #include "includes.h" | ||
21 | |||
20 | #include <sys/types.h> | 22 | #include <sys/types.h> |
21 | 23 | ||
22 | #include <assert.h> | 24 | #include <assert.h> |
diff --git a/regress/unittests/test_helper/test_helper.c b/regress/unittests/test_helper/test_helper.c index 8f0bbdec9..5881538ee 100644 --- a/regress/unittests/test_helper/test_helper.c +++ b/regress/unittests/test_helper/test_helper.c | |||
@@ -17,6 +17,8 @@ | |||
17 | 17 | ||
18 | /* Utility functions/framework for regress tests */ | 18 | /* Utility functions/framework for regress tests */ |
19 | 19 | ||
20 | #include "includes.h" | ||
21 | |||
20 | #include <sys/types.h> | 22 | #include <sys/types.h> |
21 | #include <sys/param.h> | 23 | #include <sys/param.h> |
22 | 24 | ||
@@ -30,7 +32,9 @@ | |||
30 | 32 | ||
31 | #include <openssl/bn.h> | 33 | #include <openssl/bn.h> |
32 | 34 | ||
33 | #include <vis.h> | 35 | #if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS) |
36 | # include <vis.h> | ||
37 | #endif | ||
34 | 38 | ||
35 | #include "test_helper.h" | 39 | #include "test_helper.h" |
36 | 40 | ||