diff options
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/tests/test_posix.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/script/tests/test_posix.sh b/source4/script/tests/test_posix.sh index 06bb43abad..9c46b83552 100755 --- a/source4/script/tests/test_posix.sh +++ b/source4/script/tests/test_posix.sh @@ -20,7 +20,7 @@ testit() { trap "rm -f test.$$" EXIT cmdline="$*" - if ! $cmdline > test.$$ 2>&1; then + if ! $cmdline > test.$$; then cat test.$$; rm -f test.$$; echo "TEST FAILED - $cmdline"; @@ -52,5 +52,5 @@ for t in $tests; do fi start="" echo Testing $t - testit bin/smbtorture $unc -U"$username"%"$password" $t + testit $VALGRIND bin/smbtorture $unc -U"$username"%"$password" $t done |