summaryrefslogtreecommitdiff
path: root/test/Makefile.ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-03-13 19:24:39 +0000
committerBodo Möller <bodo@openssl.org>2000-03-13 19:24:39 +0000
commit65b002f39934a755b6db855c9f9ba722d6cef863 (patch)
treeb26617a66f83a3bd399da887892a6e4af0ba3735 /test/Makefile.ssl
parentbc23b70e47531cabe5b3c329ba0b5d58777fbb7b (diff)
downloadopenssl-new-65b002f39934a755b6db855c9f9ba722d6cef863.tar.gz
Update test suite so that 'make test' succeeds in 'no-rsa' configuration.
Diffstat (limited to 'test/Makefile.ssl')
-rw-r--r--test/Makefile.ssl14
1 files changed, 9 insertions, 5 deletions
diff --git a/test/Makefile.ssl b/test/Makefile.ssl
index a3386d9a7e..02945de5f9 100644
--- a/test/Makefile.ssl
+++ b/test/Makefile.ssl
@@ -206,17 +206,21 @@ test_gen:
@echo "Generate and verify a certificate request"
@sh ./testgen
-test_ss:
+test_ss keyU.ss certU.ss certCA.ss:
@echo "Generate and certify a test certificate"
@sh ./testss
-test_ssl:
+test_ssl: keyU.ss certU.ss certCA.ss
@echo "test SSL protocol"
- @sh ./testssl
+ @sh ./testssl keyU.ss certU.ss certCA.ss
test_ca:
- @echo "Generate and certify a test certificate via the 'ca' program"
- @sh ./testca
+ @if ../apps/openssl list-standard-commands | grep '^rsa$$' >/dev/null; then \
+ echo "Generate and certify a test certificate via the 'ca' program"; \
+ sh ./testca; \
+ else \
+ echo "skipping CA.sh test -- requires RSA"; \
+ fi
lint:
lint -DLINT $(INCLUDES) $(SRC)>fluff