summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/run-unit-tests
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-08-24 21:04:14 +0000
committerAlan Conway <aconway@apache.org>2007-08-24 21:04:14 +0000
commit412eb79670cb53fa48107dfb0d53488378b2d835 (patch)
tree9496c3073834e04803bc2af83f449585b0587656 /qpid/cpp/src/tests/run-unit-tests
parentbf3d29992373c4c0c02acb1be3e83918a0f0e9e0 (diff)
downloadqpid-python-412eb79670cb53fa48107dfb0d53488378b2d835.tar.gz
* src/qpid/broker/Daemon.cpp: Additional logging.
* configure.ac: Fixed problem with openais check. * src/tests/test_env: Remove LD_PRELOAD dlclose_noop, only for CppUnit. * src/tests/run-unit-tests: Added LD_PRELOAD dlclose_noop. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@569520 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/run-unit-tests')
-rwxr-xr-xqpid/cpp/src/tests/run-unit-tests4
1 files changed, 3 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/run-unit-tests b/qpid/cpp/src/tests/run-unit-tests
index a3113b14ee..ce8f488b29 100755
--- a/qpid/cpp/src/tests/run-unit-tests
+++ b/qpid/cpp/src/tests/run-unit-tests
@@ -22,5 +22,7 @@ done
test -z "$TEST_ARGS" && TEST_ARGS=".libs/*Test.so"
test -z "$srcdir" && srcdir=.
-exec $srcdir/test_env DllPlugInTester -c -b $TEST_ARGS
+
+# libdlclose_noop prevents unloading symbols needed for valgrind output.
+LD_PRELOAD=.libs/libdlclose_noop.so exec $srcdir/test_env DllPlugInTester -c -b $TEST_ARGS