summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/interop/Makefile
diff options
context:
space:
mode:
authorbeck <>2020-09-21 15:13:24 +0000
committerbeck <>2020-09-21 15:13:24 +0000
commit9d558960cf920187dcf488f05a3decde546bbddc (patch)
treea3c21e131c8eed8abf93309cb7dd44dea8364462 /src/regress/lib/libssl/interop/Makefile
parent27ff728c524e9adfa73f3906fd342bb9fd830e98 (diff)
downloadopenbsd-9d558960cf920187dcf488f05a3decde546bbddc.tar.gz
openbsd-9d558960cf920187dcf488f05a3decde546bbddc.tar.bz2
openbsd-9d558960cf920187dcf488f05a3decde546bbddc.zip
1) Move the interop tests to the end so we see tlsfuzzer first
2) Reorder the interop tests so the really slow "cert" test is at the end 3) Change the cert tests to use REGRESS_SLOW_TARGETS when testing combination of client and server that does not involve libressl. This way we can skip testing openssl to openssl11 when running these manually by setting REGRESS_SKIP_SLOW to "yet" in mk.conf ok jsing@
Diffstat (limited to 'src/regress/lib/libssl/interop/Makefile')
-rw-r--r--src/regress/lib/libssl/interop/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/interop/Makefile b/src/regress/lib/libssl/interop/Makefile
index 0bd1195d39..aa9c3adf56 100644
--- a/src/regress/lib/libssl/interop/Makefile
+++ b/src/regress/lib/libssl/interop/Makefile
@@ -1,13 +1,19 @@
1# $OpenBSD: Makefile,v 1.12 2020/09/15 01:45:16 bluhm Exp $ 1# $OpenBSD: Makefile,v 1.13 2020/09/21 15:13:24 beck Exp $
2 2
3SUBDIR = libressl openssl openssl11 3SUBDIR = libressl openssl openssl11
4 4
5# the above binaries must have been built before we can continue 5# the above binaries must have been built before we can continue
6SUBDIR += cert
7SUBDIR += cipher
8SUBDIR += version
9SUBDIR += netcat 6SUBDIR += netcat
10SUBDIR += session 7SUBDIR += session
11SUBDIR += botan 8SUBDIR += botan
12 9
10# What is below takes a long time.
11# setting REGRESS_SKIP_SLOW to "yes" in mk.conf
12# will skip the tests that do not test libressl
13# but do things like test openssl to openssl11
14SUBDIR += version
15SUBDIR += cipher
16# This takes a really long time.
17SUBDIR += cert
18
13.include <bsd.subdir.mk> 19.include <bsd.subdir.mk>