You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2008/11/05 19:56:42 UTC

svn commit: r711658 - /incubator/qpid/trunk/qpid/cpp/src/tests/run_test

Author: aconway
Date: Wed Nov  5 10:56:41 2008
New Revision: 711658

URL: http://svn.apache.org/viewvc?rev=711658&view=rev
Log:

Fix error in run_test.

Modified:
    incubator/qpid/trunk/qpid/cpp/src/tests/run_test

Modified: incubator/qpid/trunk/qpid/cpp/src/tests/run_test
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/tests/run_test?rev=711658&r1=711657&r2=711658&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/tests/run_test (original)
+++ incubator/qpid/trunk/qpid/cpp/src/tests/run_test Wed Nov  5 10:56:41 2008
@@ -49,7 +49,7 @@
     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 "$@"