diff options
-rw-r--r-- | Makefile.in | 9 | ||||
-rw-r--r-- | regress/unittests/kex/test_kex.c | 2 | ||||
-rw-r--r-- | regress/unittests/kex/tests.c | 2 |
3 files changed, 7 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index 52592bbb6..5119d6a30 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -498,13 +498,14 @@ regress/unittests/bitmap/test_bitmap$(EXEEXT): ${UNITTESTS_TEST_BITMAP_OBJS} \ | |||
498 | regress/unittests/test_helper/libtest_helper.a \ | 498 | regress/unittests/test_helper/libtest_helper.a \ |
499 | -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) | 499 | -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) |
500 | 500 | ||
501 | UNITTESTS_TEST_BITMAP_OBJS=\ | 501 | UNITTESTS_TEST_KEX_OBJS=\ |
502 | regress/unittests/kex/tests.o \ | 502 | regress/unittests/kex/tests.o \ |
503 | regress/unittests/kex/test_kex.o | 503 | regress/unittests/kex/test_kex.o \ |
504 | roaming_dummy.o | ||
504 | 505 | ||
505 | regress/unittests/kex/test_kex$(EXEEXT): ${UNITTESTS_TEST_BITMAP_OBJS} \ | 506 | regress/unittests/kex/test_kex$(EXEEXT): ${UNITTESTS_TEST_KEX_OBJS} \ |
506 | regress/unittests/test_helper/libtest_helper.a libssh.a | 507 | regress/unittests/test_helper/libtest_helper.a libssh.a |
507 | $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_BITMAP_OBJS) \ | 508 | $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_KEX_OBJS) \ |
508 | regress/unittests/test_helper/libtest_helper.a \ | 509 | regress/unittests/test_helper/libtest_helper.a \ |
509 | -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) | 510 | -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) |
510 | 511 | ||
diff --git a/regress/unittests/kex/test_kex.c b/regress/unittests/kex/test_kex.c index e90647763..72a11f2c6 100644 --- a/regress/unittests/kex/test_kex.c +++ b/regress/unittests/kex/test_kex.c | |||
@@ -12,7 +12,7 @@ | |||
12 | #include <stdlib.h> | 12 | #include <stdlib.h> |
13 | #include <string.h> | 13 | #include <string.h> |
14 | 14 | ||
15 | #include "test_helper.h" | 15 | #include "../test_helper/test_helper.h" |
16 | 16 | ||
17 | #include "ssherr.h" | 17 | #include "ssherr.h" |
18 | #include "ssh_api.h" | 18 | #include "ssh_api.h" |
diff --git a/regress/unittests/kex/tests.c b/regress/unittests/kex/tests.c index 1e519fe4b..e7036ec17 100644 --- a/regress/unittests/kex/tests.c +++ b/regress/unittests/kex/tests.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Placed in the public domain | 3 | * Placed in the public domain |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "test_helper.h" | 6 | #include "../test_helper/test_helper.h" |
7 | 7 | ||
8 | void kex_tests(void); | 8 | void kex_tests(void); |
9 | 9 | ||