diff options
author | tb <> | 2021-08-29 13:17:42 +0000 |
---|---|---|
committer | tb <> | 2021-08-29 13:17:42 +0000 |
commit | 4ca7a06c837a790ec08b0dd0197b925bd1c76555 (patch) | |
tree | a40ed88f5d931a42d0e70decabf5696d409feb48 | |
parent | 44a7069016c3627e3f89a720dee9e9d4d91543c2 (diff) | |
download | openbsd-4ca7a06c837a790ec08b0dd0197b925bd1c76555.tar.gz openbsd-4ca7a06c837a790ec08b0dd0197b925bd1c76555.tar.bz2 openbsd-4ca7a06c837a790ec08b0dd0197b925bd1c76555.zip |
Add back the echo Q thing.
-rw-r--r-- | src/regress/usr.bin/openssl/x509/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/regress/usr.bin/openssl/x509/Makefile b/src/regress/usr.bin/openssl/x509/Makefile index 94cdf8d399..6476765596 100644 --- a/src/regress/usr.bin/openssl/x509/Makefile +++ b/src/regress/usr.bin/openssl/x509/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.5 2021/08/29 12:40:37 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2021/08/29 13:17:42 tb Exp $ |
2 | 2 | ||
3 | # Copyright (c) 2021 Jan Klemkow <j.klemkow@wemelug.de> | 3 | # Copyright (c) 2021 Jan Klemkow <j.klemkow@wemelug.de> |
4 | # | 4 | # |
@@ -62,7 +62,7 @@ test-inlabel-wildcard-cert-no-CA-client: | |||
62 | while fstat -p $$! | ! grep -q 'tcp .* \*:4433$$'; \ | 62 | while fstat -p $$! | ! grep -q 'tcp .* \*:4433$$'; \ |
63 | do test $$(date +%s) -lt $$timeout || exit 1; done | 63 | do test $$(date +%s) -lt $$timeout || exit 1; done |
64 | # start client | 64 | # start client |
65 | ${OPENSSL} s_client -verify_return_error \ | 65 | echo Q | ${OPENSSL} s_client -verify_return_error \ |
66 | | grep "Verify return code: 21" | 66 | | grep "Verify return code: 21" |
67 | 67 | ||
68 | test-inlabel-wildcard-cert-CA-client: | 68 | test-inlabel-wildcard-cert-CA-client: |
@@ -74,7 +74,7 @@ test-inlabel-wildcard-cert-CA-client: | |||
74 | while fstat -p $$! | ! grep -q 'tcp .* \*:4433$$'; \ | 74 | while fstat -p $$! | ! grep -q 'tcp .* \*:4433$$'; \ |
75 | do test $$(date +%s) -lt $$timeout || exit 1; done | 75 | do test $$(date +%s) -lt $$timeout || exit 1; done |
76 | # start client | 76 | # start client |
77 | ${OPENSSL} s_client -CAfile caR.pem \ | 77 | echo Q | ${OPENSSL} s_client -CAfile caR.pem \ |
78 | | grep "Verify return code: 0" | 78 | | grep "Verify return code: 0" |
79 | 79 | ||
80 | test-common-wildcard-cert-no-CA-client: | 80 | test-common-wildcard-cert-no-CA-client: |
@@ -86,7 +86,7 @@ test-common-wildcard-cert-no-CA-client: | |||
86 | while fstat -p $$! | ! grep -q 'tcp .* \*:4433$$'; \ | 86 | while fstat -p $$! | ! grep -q 'tcp .* \*:4433$$'; \ |
87 | do test $$(date +%s) -lt $$timeout || exit 1; done | 87 | do test $$(date +%s) -lt $$timeout || exit 1; done |
88 | # start client | 88 | # start client |
89 | ${OPENSSL} s_client \ | 89 | echo Q | ${OPENSSL} s_client \ |
90 | | grep "Verify return code: 21" | 90 | | grep "Verify return code: 21" |
91 | 91 | ||
92 | test-common-wildcard-cert-CA-client: | 92 | test-common-wildcard-cert-CA-client: |
@@ -98,7 +98,7 @@ test-common-wildcard-cert-CA-client: | |||
98 | while fstat -p $$! | ! grep -q 'tcp .* \*:4433$$'; \ | 98 | while fstat -p $$! | ! grep -q 'tcp .* \*:4433$$'; \ |
99 | do test $$(date +%s) -lt $$timeout || exit 1; done | 99 | do test $$(date +%s) -lt $$timeout || exit 1; done |
100 | # start client | 100 | # start client |
101 | ${OPENSSL} s_client -CAfile caR.pem \ | 101 | echo Q | ${OPENSSL} s_client -CAfile caR.pem \ |
102 | | grep "Verify return code: 21" | 102 | | grep "Verify return code: 21" |
103 | 103 | ||
104 | test-verify-unusual-wildcard-cert: | 104 | test-verify-unusual-wildcard-cert: |