12 lines
178 B
Bash
Executable File
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
|