libreSSL/tests/pidwraptest.sh
2014-07-28 07:26:27 -05:00

12 lines
178 B
Bash
Executable File

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