libreSSL/tests/pidwraptest.sh

12 lines
178 B
Bash
Raw Normal View History

2014-07-27 13:13:54 +02:00
#!/bin/sh
./pidwraptest > pidwraptest.txt
2014-07-27 13:13:54 +02:00
while read a b;
do
if [ "$a" = "$b" ]; then
echo "FAIL: $a = $b"
return 2
else
echo "PASS: $a != $b"
fi
done < pidwraptest.txt