remove bash-isms from test scripts
This commit is contained in:
parent
0a74a4d464
commit
1b62d5e416
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/bin/sh
|
||||||
./pidwraptest > pidwraptest.txt
|
./pidwraptest > pidwraptest.txt
|
||||||
while read -r a b;
|
while read a b;
|
||||||
do
|
do
|
||||||
if [ "$a" = "$b" ]; then
|
if [ "$a" = "$b" ]; then
|
||||||
echo "FAIL: $a = $b"
|
echo "FAIL: $a = $b"
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
export PATH=../apps:$PATH
|
PATH=../apps:$PATH
|
||||||
|
export PATH
|
||||||
$srcdir/testssl $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem
|
$srcdir/testssl $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem
|
||||||
|
Loading…
x
Reference in New Issue
Block a user