summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/interop/openssl
diff options
context:
space:
mode:
authorbluhm <>2020-12-17 00:51:12 +0000
committerbluhm <>2020-12-17 00:51:12 +0000
commit3dc22e980e9538fc03b2673fe6dccee19ad5484a (patch)
tree41030f23560f1b7f802918acd790dd062a36ac0b /src/regress/lib/libssl/interop/openssl
parenta931e8abeae9673086c9b2e44a07ef4a31f44bb1 (diff)
downloadopenbsd-3dc22e980e9538fc03b2673fe6dccee19ad5484a.tar.gz
openbsd-3dc22e980e9538fc03b2673fe6dccee19ad5484a.tar.bz2
openbsd-3dc22e980e9538fc03b2673fe6dccee19ad5484a.zip
Remove echo headlines.
Diffstat (limited to 'src/regress/lib/libssl/interop/openssl')
-rw-r--r--src/regress/lib/libssl/interop/openssl/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/interop/openssl/Makefile b/src/regress/lib/libssl/interop/openssl/Makefile
index e56312505f..181d35aa02 100644
--- a/src/regress/lib/libssl/interop/openssl/Makefile
+++ b/src/regress/lib/libssl/interop/openssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.7 2020/10/29 06:05:12 tb Exp $ 1# $OpenBSD: Makefile,v 1.8 2020/12/17 00:51:11 bluhm Exp $
2 2
3.if ! exists(/usr/local/bin/eopenssl) 3.if ! exists(/usr/local/bin/eopenssl)
4regress: 4regress:
@@ -21,7 +21,6 @@ REGRESS_TARGETS += run-ldd-$p run-version-$p run-protocol-$p
21.for p in ${PROGS} 21.for p in ${PROGS}
22 22
23run-ldd-$p: ldd-$p.out 23run-ldd-$p: ldd-$p.out
24 @echo '\n======== $@ ========'
25 # check that $p is linked with OpenSSL 24 # check that $p is linked with OpenSSL
26 grep -q /usr/local/lib/eopenssl/libcrypto.so ldd-$p.out 25 grep -q /usr/local/lib/eopenssl/libcrypto.so ldd-$p.out
27 grep -q /usr/local/lib/eopenssl/libssl.so ldd-$p.out 26 grep -q /usr/local/lib/eopenssl/libssl.so ldd-$p.out
@@ -29,12 +28,10 @@ run-ldd-$p: ldd-$p.out
29 ! grep -v libc.so ldd-$p.out | grep /usr/lib/ 28 ! grep -v libc.so ldd-$p.out | grep /usr/lib/
30 29
31run-version-$p: $p-self.out 30run-version-$p: $p-self.out
32 @echo '\n======== $@ ========'
33 # check that runtime version is OpenSSL 1.0.2 31 # check that runtime version is OpenSSL 1.0.2
34 grep 'SSLEAY_VERSION: OpenSSL 1.0.2' $p-self.out 32 grep 'SSLEAY_VERSION: OpenSSL 1.0.2' $p-self.out
35 33
36run-protocol-$p: $p-self.out 34run-protocol-$p: $p-self.out
37 @echo '\n======== $@ ========'
38 # check that OpenSSL 1.0.2 protocol version is TLS 1.2 35 # check that OpenSSL 1.0.2 protocol version is TLS 1.2
39 grep 'Protocol *: TLSv1.2' $p-self.out 36 grep 'Protocol *: TLSv1.2' $p-self.out
40 37