diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/pidwraptest.sh | 4 | ||||
-rwxr-xr-x | tests/ssltest.sh | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/tests/pidwraptest.sh b/tests/pidwraptest.sh index 74fd46e..04fb5c4 100755 --- a/tests/pidwraptest.sh +++ b/tests/pidwraptest.sh | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/usr/bin/env bash | 1 | #!/bin/sh |
2 | ./pidwraptest > pidwraptest.txt | 2 | ./pidwraptest > pidwraptest.txt |
3 | while read -r a b; | 3 | while read a b; |
4 | do | 4 | do |
5 | if [ "$a" = "$b" ]; then | 5 | if [ "$a" = "$b" ]; then |
6 | echo "FAIL: $a = $b" | 6 | echo "FAIL: $a = $b" |
diff --git a/tests/ssltest.sh b/tests/ssltest.sh index 89863ea..476a258 100755 --- a/tests/ssltest.sh +++ b/tests/ssltest.sh | |||
@@ -1,4 +1,5 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | set -e | 2 | set -e |
3 | export PATH=../apps:$PATH | 3 | PATH=../apps:$PATH |
4 | export PATH | ||
4 | $srcdir/testssl $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem | 5 | $srcdir/testssl $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem |