aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2015-06-05 02:31:22 -0500
committerBrent Cook <bcook@openbsd.org>2015-06-05 04:50:17 -0500
commit8eec2f485a9aa4adda7fec46b15771b29c3ac9ee (patch)
tree5bcecb65026a7c8341049763ed0b68bd17e6a7cc /tests
parentd5a09e199a69c4a77b942afdfd2e0dc09a3e4a11 (diff)
downloadportable-8eec2f485a9aa4adda7fec46b15771b29c3ac9ee.tar.gz
portable-8eec2f485a9aa4adda7fec46b15771b29c3ac9ee.tar.bz2
portable-8eec2f485a9aa4adda7fec46b15771b29c3ac9ee.zip
use correct binary on native windows builds
Diffstat (limited to 'tests')
-rwxr-xr-xtests/testdsa.sh3
-rwxr-xr-xtests/testenc.sh3
-rwxr-xr-xtests/testrsa.sh3
3 files changed, 9 insertions, 0 deletions
diff --git a/tests/testdsa.sh b/tests/testdsa.sh
index 205b564..22de755 100755
--- a/tests/testdsa.sh
+++ b/tests/testdsa.sh
@@ -5,6 +5,9 @@
5#Test DSA certificate generation of openssl 5#Test DSA certificate generation of openssl
6 6
7cmd=../apps/openssl 7cmd=../apps/openssl
8if [ -e ../apps/openssl.exe ]; then
9 cmd=../apps/openssl.exe
10fi
8 11
9if [ -z $srcdir ]; then 12if [ -z $srcdir ]; then
10 srcdir=. 13 srcdir=.
diff --git a/tests/testenc.sh b/tests/testenc.sh
index 51af0ab..9973c1c 100755
--- a/tests/testenc.sh
+++ b/tests/testenc.sh
@@ -3,6 +3,9 @@
3 3
4test=p 4test=p
5cmd=../apps/openssl 5cmd=../apps/openssl
6if [ -e ../apps/openssl.exe ]; then
7 cmd=../apps/openssl.exe
8fi
6 9
7cat openssl.cnf >$test; 10cat openssl.cnf >$test;
8 11
diff --git a/tests/testrsa.sh b/tests/testrsa.sh
index c96ad25..b72e760 100755
--- a/tests/testrsa.sh
+++ b/tests/testrsa.sh
@@ -5,6 +5,9 @@
5#Test RSA certificate generation of openssl 5#Test RSA certificate generation of openssl
6 6
7cmd=../apps/openssl 7cmd=../apps/openssl
8if [ -e ../apps/openssl.exe ]; then
9 cmd=../apps/openssl.exe
10fi
8 11
9if [ -z $srcdir ]; then 12if [ -z $srcdir ]; then
10 srcdir=. 13 srcdir=.