aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.ssl
diff options
context:
space:
mode:
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