summaryrefslogtreecommitdiff
path: root/src/lib/libssl/test
diff options
context:
space:
mode:
authormarkus <>2002-09-05 22:12:12 +0000
committermarkus <>2002-09-05 22:12:12 +0000
commite08fb7998d733407336e83a299f140b0c1d2fcd3 (patch)
tree64de5de3b0be4adfc5050b6f785b6975c564b730 /src/lib/libssl/test
parentb200d1ec45aafc7c92b197a4b605e34834d74f1d (diff)
downloadopenbsd-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.ssl15
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
14MAKE= make -f $(MAKEFILE) 14MAKE= make -f $(MAKEFILE)
15MAKEDEPPROG= makedepend 15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) 16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17PERL= perl
17 18
18PEX_LIBS= 19PEX_LIBS=
19EX_LIBS= #-lnsl -lsocket 20EX_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
237test_ss: 238test_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
245test_ssl: 246test_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
249test_ca: 250test_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
253test_rd: #$(RDTEST) 258test_rd: #$(RDTEST)
254# @echo "test Rijndael" 259# @echo "test Rijndael"