aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/pidwraptest.sh4
-rwxr-xr-xtests/ssltest.sh3
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
3while read -r a b; 3while read a b;
4do 4do
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
2set -e 2set -e
3export PATH=../apps:$PATH 3PATH=../apps:$PATH
4export 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