diff options
author | 2002-09-05 22:12:11 +0000 | |
---|---|---|
committer | 2002-09-05 22:12:11 +0000 | |
commit | 8b4ee906e92eb6adb6ebf60047195837173ec9a2 (patch) | |
tree | d68f3c1817357a624a131bfe988c9941f64d160f /lib/libssl/test | |
parent | fpu save state is a separate magic function now (diff) | |
download | wireguard-openbsd-8b4ee906e92eb6adb6ebf60047195837173ec9a2.tar.xz wireguard-openbsd-8b4ee906e92eb6adb6ebf60047195837173ec9a2.zip |
merge with 0.9.7-beta1
Diffstat (limited to 'lib/libssl/test')
-rw-r--r-- | lib/libssl/test/Makefile.ssl | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/libssl/test/Makefile.ssl b/lib/libssl/test/Makefile.ssl index 952ab163710..49f2cc9a23f 100644 --- a/lib/libssl/test/Makefile.ssl +++ b/lib/libssl/test/Makefile.ssl @@ -14,6 +14,7 @@ MAKEFILE= Makefile.ssl MAKE= make -f $(MAKEFILE) MAKEDEPPROG= makedepend MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) +PERL= perl PEX_LIBS= EX_LIBS= #-lnsl -lsocket @@ -234,7 +235,7 @@ test_gen: @echo "Generate and verify a certificate request" @sh ./testgen -test_ss: +test_ss keyU.ss certU.ss certCA.ss: testss @echo "Generate and certify a test certificate" @sh ./testss @@ -242,13 +243,17 @@ test_engine: @echo "Manipulate the ENGINE structures" ./$(ENGINETEST) -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 no-rsa; then \ + echo "skipping CA.sh test -- requires RSA"; \ + else \ + echo "Generate and certify a test certificate via the 'ca' program"; \ + sh ./testca; \ + fi test_rd: #$(RDTEST) # @echo "test Rijndael" |