diff options
author | Alan Conway <aconway@apache.org> | 2008-11-05 18:56:41 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-11-05 18:56:41 +0000 |
commit | 88a8a05993074e8a601afbab173408d38a2be332 (patch) | |
tree | b362112b6220f2d4c289fce3126e5c3c2965e337 /qpid/cpp | |
parent | 3cdb10bcf5bbbb6a21325a5bef78d3584460e46d (diff) | |
download | qpid-python-88a8a05993074e8a601afbab173408d38a2be332.tar.gz |
Fix error in run_test.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@711658 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rwxr-xr-x | qpid/cpp/src/tests/run_test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/run_test b/qpid/cpp/src/tests/run_test index c4789bb391..4d0da15d4c 100755 --- a/qpid/cpp/src/tests/run_test +++ b/qpid/cpp/src/tests/run_test @@ -49,7 +49,7 @@ if grep -l "^# Generated by .*libtool" "$1" >/dev/null 2>&1; then test -n "$VALGRIND" && VALGRIND="$VALGRIND $VALGRIND_OPTS" # Hide output unless there's an error. libtool --mode=execute $VALGRIND "$@" 2>&1 || ERROR=1 - test -n "$VALGRIND" && { vg_check $VG_LOG || ERROR=1 ; } + test -n "$VALGRIND" && { vg_check $VG_LOG* || ERROR=1 ; } else # This is a non-libtool shell script, just execute it. exec "$@" |