summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/interop/libressl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libssl/interop/libressl/Makefile')
-rw-r--r--src/regress/lib/libssl/interop/libressl/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/interop/libressl/Makefile b/src/regress/lib/libssl/interop/libressl/Makefile
index d19e6eb306..78e995abef 100644
--- a/src/regress/lib/libssl/interop/libressl/Makefile
+++ b/src/regress/lib/libssl/interop/libressl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.7 2020/09/14 00:51:04 bluhm Exp $ 1# $OpenBSD: Makefile,v 1.8 2020/12/17 00:51:11 bluhm Exp $
2 2
3PROGS = client server 3PROGS = client server
4CFLAGS = -DLIBRESSL_HAS_TLS1_3 4CFLAGS = -DLIBRESSL_HAS_TLS1_3
@@ -15,7 +15,6 @@ REGRESS_TARGETS += run-ldd-$p run-version-$p run-protocol-$p
15.for p in ${PROGS} 15.for p in ${PROGS}
16 16
17run-ldd-$p: ldd-$p.out 17run-ldd-$p: ldd-$p.out
18 @echo '\n======== $@ ========'
19 # check that $p is linked with LibreSSL 18 # check that $p is linked with LibreSSL
20 grep -q /usr/lib/libcrypto.so ldd-$p.out 19 grep -q /usr/lib/libcrypto.so ldd-$p.out
21 grep -q /usr/lib/libssl.so ldd-$p.out 20 grep -q /usr/lib/libssl.so ldd-$p.out
@@ -23,12 +22,10 @@ run-ldd-$p: ldd-$p.out
23 ! grep /usr/local/lib/ ldd-$p.out 22 ! grep /usr/local/lib/ ldd-$p.out
24 23
25run-version-$p: $p-self.out 24run-version-$p: $p-self.out
26 @echo '\n======== $@ ========'
27 # check that runtime version is LibreSSL 25 # check that runtime version is LibreSSL
28 grep 'SSLEAY_VERSION: LibreSSL' $p-self.out 26 grep 'SSLEAY_VERSION: LibreSSL' $p-self.out
29 27
30run-protocol-$p: $p-self.out 28run-protocol-$p: $p-self.out
31 @echo '\n======== $@ ========'
32 # check that LibreSSL protocol version is TLS 1.3 29 # check that LibreSSL protocol version is TLS 1.3
33 grep 'Protocol *: TLSv1.3' $p-self.out 30 grep 'Protocol *: TLSv1.3' $p-self.out
34 31