diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-29 01:08:07 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-29 01:08:07 +0000 |
commit | 5d20de4a86d8a94c79847288c10ae3de90145c67 (patch) | |
tree | 3597657ae40ee4ad24829a1ecb1213f60acb6284 /tests | |
parent | 27241dd28beeb2415d518a2877d94c8f4056a0a9 (diff) | |
download | FreeBSD-src-5d20de4a86d8a94c79847288c10ae3de90145c67.zip FreeBSD-src-5d20de4a86d8a94c79847288c10ae3de90145c67.tar.gz |
MFC r292582:
Dump out the output from flock_helper on failure so failures with the
test app can be debugged
Obtained from: Isilon OneFS (^/onefs/head@r511419)
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/sys/file/flock_test.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/sys/file/flock_test.sh b/tests/sys/file/flock_test.sh index ac3e799..ffd3d18 100755 --- a/tests/sys/file/flock_test.sh +++ b/tests/sys/file/flock_test.sh @@ -48,10 +48,11 @@ for n in `seq 1 $last_testcase`; do todomsg=" # TODO: racy testcase (doesn't handle EINTR properly)" fi - $(dirname $0)/flock_helper . $n | grep -q SUCCEED - if [ $? -eq 0 ]; then + output=$($(dirname $0)/flock_helper . $n) + if echo "$output" | grep -q SUCCEED; then echo "ok $n$todomsg" else echo "not ok $n$todomsg" + echo "$output" >&2 fi done |