diff options
author | Richard Levitte <levitte@openssl.org> | 2002-06-13 20:42:35 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-06-13 20:42:35 +0000 |
commit | 451dc18f109e4fff1a642976fee7ae7e64af35dc (patch) | |
tree | c4728b949d7511ed666c9f0ef65ec8e7c8957581 /test | |
parent | 127dca46a07850204f1432ec6998923eebc341b1 (diff) | |
download | openssl-new-451dc18f109e4fff1a642976fee7ae7e64af35dc.tar.gz |
Add support for DJGPP.
PR: 75
Diffstat (limited to 'test')
-rw-r--r-- | test/tcrl | 6 | ||||
-rw-r--r-- | test/testca | 6 | ||||
-rw-r--r-- | test/testgen | 6 | ||||
-rw-r--r-- | test/tpkcs7 | 6 | ||||
-rw-r--r-- | test/tpkcs7d | 6 | ||||
-rw-r--r-- | test/treq | 6 | ||||
-rw-r--r-- | test/trsa | 6 | ||||
-rw-r--r-- | test/tsid | 6 | ||||
-rw-r--r-- | test/tx509 | 6 |
9 files changed, 45 insertions, 9 deletions
@@ -1,6 +1,10 @@ #!/bin/sh -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH +else + PATH=../apps:$PATH +fi export PATH cmd='../apps/openssl crl' diff --git a/test/testca b/test/testca index 88c186b6ab..8215ebb5d1 100644 --- a/test/testca +++ b/test/testca @@ -1,7 +1,11 @@ #!/bin/sh SH="/bin/sh" -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=./apps\;../apps\;$PATH +else + PATH=../apps:$PATH +fi export SH PATH SSLEAY_CONFIG="-config CAss.cnf" diff --git a/test/testgen b/test/testgen index 6a4b6b9221..55c496f4bc 100644 --- a/test/testgen +++ b/test/testgen @@ -6,7 +6,11 @@ CA=../certs/testca.pem /bin/rm -f $T.1 $T.2 $T.key -PATH=../apps:$PATH; +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH; +else + PATH=../apps:$PATH; +fi export PATH echo "generating certificate request" diff --git a/test/tpkcs7 b/test/tpkcs7 index 15bbba42c0..cf3bd9fadb 100644 --- a/test/tpkcs7 +++ b/test/tpkcs7 @@ -1,6 +1,10 @@ #!/bin/sh -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH +else + PATH=../apps:$PATH +fi export PATH cmd='../apps/openssl pkcs7' diff --git a/test/tpkcs7d b/test/tpkcs7d index 46e5aa2bd6..18f9311b06 100644 --- a/test/tpkcs7d +++ b/test/tpkcs7d @@ -1,6 +1,10 @@ #!/bin/sh -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH +else + PATH=../apps:$PATH +fi export PATH cmd='../apps/openssl pkcs7' @@ -1,6 +1,10 @@ #!/bin/sh -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH +else + PATH=../apps:$PATH +fi export PATH cmd='../apps/openssl req -config ../apps/openssl.cnf' @@ -1,6 +1,10 @@ #!/bin/sh -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH +else + PATH=../apps:$PATH +fi export PATH if ../apps/openssl no-rsa; then @@ -1,6 +1,10 @@ #!/bin/sh -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH +else + PATH=../apps:$PATH +fi export PATH cmd='../apps/openssl sess_id' diff --git a/test/tx509 b/test/tx509 index 35169f3a43..d380963abc 100644 --- a/test/tx509 +++ b/test/tx509 @@ -1,6 +1,10 @@ #!/bin/sh -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH +else + PATH=../apps:$PATH +fi export PATH cmd='../apps/openssl x509' |