diff options
author | markus <> | 2002-09-05 22:12:12 +0000 |
---|---|---|
committer | markus <> | 2002-09-05 22:12:12 +0000 |
commit | e08fb7998d733407336e83a299f140b0c1d2fcd3 (patch) | |
tree | 64de5de3b0be4adfc5050b6f785b6975c564b730 /src/lib/libssl/test | |
parent | b200d1ec45aafc7c92b197a4b605e34834d74f1d (diff) | |
download | openbsd-e08fb7998d733407336e83a299f140b0c1d2fcd3.tar.gz openbsd-e08fb7998d733407336e83a299f140b0c1d2fcd3.tar.bz2 openbsd-e08fb7998d733407336e83a299f140b0c1d2fcd3.zip |
merge with 0.9.7-beta1
Diffstat (limited to 'src/lib/libssl/test')
-rw-r--r-- | src/lib/libssl/test/Makefile.ssl | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/lib/libssl/test/Makefile.ssl b/src/lib/libssl/test/Makefile.ssl index 952ab16371..49f2cc9a23 100644 --- a/src/lib/libssl/test/Makefile.ssl +++ b/src/lib/libssl/test/Makefile.ssl | |||
@@ -14,6 +14,7 @@ MAKEFILE= Makefile.ssl | |||
14 | MAKE= make -f $(MAKEFILE) | 14 | MAKE= make -f $(MAKEFILE) |
15 | MAKEDEPPROG= makedepend | 15 | MAKEDEPPROG= makedepend |
16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) |
17 | PERL= perl | ||
17 | 18 | ||
18 | PEX_LIBS= | 19 | PEX_LIBS= |
19 | EX_LIBS= #-lnsl -lsocket | 20 | EX_LIBS= #-lnsl -lsocket |
@@ -234,7 +235,7 @@ test_gen: | |||
234 | @echo "Generate and verify a certificate request" | 235 | @echo "Generate and verify a certificate request" |
235 | @sh ./testgen | 236 | @sh ./testgen |
236 | 237 | ||
237 | test_ss: | 238 | test_ss keyU.ss certU.ss certCA.ss: testss |
238 | @echo "Generate and certify a test certificate" | 239 | @echo "Generate and certify a test certificate" |
239 | @sh ./testss | 240 | @sh ./testss |
240 | 241 | ||
@@ -242,13 +243,17 @@ test_engine: | |||
242 | @echo "Manipulate the ENGINE structures" | 243 | @echo "Manipulate the ENGINE structures" |
243 | ./$(ENGINETEST) | 244 | ./$(ENGINETEST) |
244 | 245 | ||
245 | test_ssl: | 246 | test_ssl: keyU.ss certU.ss certCA.ss |
246 | @echo "test SSL protocol" | 247 | @echo "test SSL protocol" |
247 | @sh ./testssl | 248 | @sh ./testssl keyU.ss certU.ss certCA.ss |
248 | 249 | ||
249 | test_ca: | 250 | test_ca: |
250 | @echo "Generate and certify a test certificate via the 'ca' program" | 251 | @if ../apps/openssl no-rsa; then \ |
251 | @sh ./testca | 252 | echo "skipping CA.sh test -- requires RSA"; \ |
253 | else \ | ||
254 | echo "Generate and certify a test certificate via the 'ca' program"; \ | ||
255 | sh ./testca; \ | ||
256 | fi | ||
252 | 257 | ||
253 | test_rd: #$(RDTEST) | 258 | test_rd: #$(RDTEST) |
254 | # @echo "test Rijndael" | 259 | # @echo "test Rijndael" |