diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-02-10 19:16:45 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-02-10 19:16:45 +0000 |
commit | 3024fe1fbf7230e8ee95a28e665ed318e08a83a3 (patch) | |
tree | 863f555707c0e6d7f8e2d5702582890aee9d2b43 /regress/usr.sbin | |
parent | dd084becb1faf1e269bb61e1d9359061763cb29f (diff) |
Fix regress after crl_print() addition so anton doesn't have to complain
tomorrow morning
Diffstat (limited to 'regress/usr.sbin')
-rw-r--r-- | regress/usr.sbin/rpki-client/Makefile.inc | 6 | ||||
-rw-r--r-- | regress/usr.sbin/rpki-client/openssl11/Makefile | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/regress/usr.sbin/rpki-client/Makefile.inc b/regress/usr.sbin/rpki-client/Makefile.inc index d73cfe28fa0..4909a89b89d 100644 --- a/regress/usr.sbin/rpki-client/Makefile.inc +++ b/regress/usr.sbin/rpki-client/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.18 2022/02/04 13:11:14 claudio Exp $ +# $OpenBSD: Makefile.inc,v 1.19 2022/02/10 19:16:44 tb Exp $ .PATH: ${.CURDIR}/../../../../usr.sbin/rpki-client @@ -18,7 +18,7 @@ CFLAGS+= -I${.CURDIR}/.. -I${.CURDIR}/../../../../usr.sbin/rpki-client LDADD+= -lcrypto -lutil DPADD+= ${LIBCRYPTO} ${LIBUTIL} -SRCS_test-ip= test-ip.c ip.c io.c encoding.c print.c +SRCS_test-ip += test-ip.c ip.c io.c encoding.c print.c x509.c run-regress-test-ip: test-ip ./test-ip @@ -48,7 +48,7 @@ run-regress-test-gbr: test-gbr ./test-gbr -v ${.CURDIR}/../gbr/*.gbr SRCS_test-tal+= test-tal.c tal.c ip.c io.c log.c validate.c \ - encoding.c print.c dummy.c + encoding.c print.c dummy.c x509.c run-regress-test-tal: test-tal ./test-tal -v ${.CURDIR}/../tal/*.tal diff --git a/regress/usr.sbin/rpki-client/openssl11/Makefile b/regress/usr.sbin/rpki-client/openssl11/Makefile index bc27a95c031..b6600403167 100644 --- a/regress/usr.sbin/rpki-client/openssl11/Makefile +++ b/regress/usr.sbin/rpki-client/openssl11/Makefile @@ -18,10 +18,12 @@ a_time_tm_gen.c: a_time_tm.c CLEANFILES += a_time_tm_gen.c a_time_tm_gen.c.tmp +SRCS_test-ip = a_time_tm_gen.c o_time.c SRCS_test-mft = a_time_tm_gen.c o_time.c SRCS_test-roa = a_time_tm_gen.c o_time.c SRCS_test-cert = a_time_tm_gen.c o_time.c SRCS_test-gbr = a_time_tm_gen.c o_time.c +SRCS_test-tal = a_time_tm_gen.c o_time.c SRCS_test-bgpsec = a_time_tm_gen.c o_time.c CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/ |