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 | 06c6c1db04d562b6cad0293cb4c5f8e40dde7a19 (patch) | |
tree | 3a3dd83a71e15ebde492946c3dcfc408ee26ae1d /cpp/src | |
parent | 6c1ef2999cff4e5fe1f003364ed220223d333bc8 (diff) | |
download | qpid-python-06c6c1db04d562b6cad0293cb4c5f8e40dde7a19.tar.gz |
Fix error in run_test.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@711658 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rwxr-xr-x | cpp/src/tests/run_test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/run_test b/cpp/src/tests/run_test index c4789bb391..4d0da15d4c 100755 --- a/cpp/src/tests/run_test +++ b/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 "$@" |