rename local tests to end in test.c

ok beck@ guenther@
This commit is contained in:
Brent Cook
2014-07-21 18:25:54 -05:00
parent f425f564d5
commit 23dc97f8c2
2 changed files with 0 additions and 0 deletions

11
tests/pidwraptest.sh Executable file
View File

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