diff options
author | Brent Cook <bcook@openbsd.org> | 2014-07-21 18:30:31 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-07-21 20:27:14 -0500 |
commit | 33bc05ca9ce2f190350738684eee1cd9d1bea9c2 (patch) | |
tree | 865d838f2a398abafd9f36ddee0e9df5031f56a8 /tests | |
parent | 23dc97f8c2543cf67881dd6d4a351e95318637db (diff) | |
download | portable-33bc05ca9ce2f190350738684eee1cd9d1bea9c2.tar.gz portable-33bc05ca9ce2f190350738684eee1cd9d1bea9c2.tar.bz2 portable-33bc05ca9ce2f190350738684eee1cd9d1bea9c2.zip |
better handle disabled tests and exclude files
ok beck@ guenther@
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/pidwraptest.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pidwraptest.sh b/tests/pidwraptest.sh index d1e2685..74fd46e 100755 --- a/tests/pidwraptest.sh +++ b/tests/pidwraptest.sh | |||
@@ -1,5 +1,5 @@ | |||
1 | #!/usr/bin/env bash | 1 | #!/usr/bin/env bash |
2 | ./fork_rand > fork_rand.txt | 2 | ./pidwraptest > pidwraptest.txt |
3 | while read -r a b; | 3 | while read -r a b; |
4 | do | 4 | do |
5 | if [ "$a" = "$b" ]; then | 5 | if [ "$a" = "$b" ]; then |
@@ -8,4 +8,4 @@ do | |||
8 | else | 8 | else |
9 | echo "PASS: $a != $b" | 9 | echo "PASS: $a != $b" |
10 | fi | 10 | fi |
11 | done < fork_rand.txt | 11 | done < pidwraptest.txt |