blob: 74fd46e6312803c9c45a54b124aa3d5d9914b643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
|