Skip to content

Commit 9fe2075

Browse files
committed
adapt compat_kex_proposal() test to portable
1 parent 903c556 commit 9fe2075

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Makefile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,7 @@ regress/unittests/conversion/test_conversion$(EXEEXT): \
616616
UNITTESTS_TEST_KEX_OBJS=\
617617
regress/unittests/kex/tests.o \
618618
regress/unittests/kex/test_kex.o \
619+
regress/unittests/kex/test_proposal.o \
619620
$(SKOBJS)
620621

621622
regress/unittests/kex/test_kex$(EXEEXT): ${UNITTESTS_TEST_KEX_OBJS} \

regress/unittests/kex/test_proposal.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,18 @@
55
* Placed in the public domain
66
*/
77

8+
#include "includes.h"
9+
810
#include <sys/types.h>
911
#include <signal.h>
1012
#include <stdio.h>
13+
#ifdef HAVE_STDINT_H
1114
#include <stdint.h>
15+
#endif
1216
#include <stdlib.h>
1317
#include <string.h>
1418

15-
#include "test_helper.h"
19+
#include "../test_helper/test_helper.h"
1620

1721
#include "compat.h"
1822
#include "ssherr.h"

0 commit comments

Comments
 (0)