libressl-portable/tests/pidwraptest.sh
2014-07-21 20:27:14 -05:00

12 lines
191 B
Bash
Executable File

#!/usr/bin/env bash
./pidwraptest > pidwraptest.txt
while read -r a b;
do
if [ "$a" = "$b" ]; then
echo "FAIL: $a = $b"
return 2
else
echo "PASS: $a != $b"
fi
done < pidwraptest.txt