Use the libust.so and libustinstr-malloc.so from the build directory
authorYannick Brosseau <yannick.brosseau@gmail.com>
Mon, 21 Feb 2011 01:30:05 +0000 (20:30 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Mon, 21 Feb 2011 01:30:05 +0000 (20:30 -0500)
Signed-off-by: Yannick Brosseau <yannick.brosseau@gmail.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
tests/manual_mode_tracing.sh

index bd85083bc8a9e33f325e7f1fba74a9935cc6092c..19044ba0fb2b45b9333ac27040f9d521b5e6b3fa 100755 (executable)
@@ -41,7 +41,9 @@ UST_CONSUMERD="$TESTDIR/../ust-consumerd/ust-consumerd"
 $UST_CONSUMERD --pidfile "$pidfilepath" -o "$TRACE_DIR" >/dev/null 2>&1 &
 UST_CONSUMERD_PID="$(<$pidfilepath)"
 
-LD_PRELOAD=/usr/local/lib/libust.so.0.0.0:/usr/local/lib/libustinstr-malloc.so find -L / >/dev/null 2>&1 &
+LIB_UST="$TESTDIR/../libust/.libs/libust.so.0.0.0"
+LIB_UST_MALLOC="$TESTDIR/../libustinstr-malloc/.libs/libustinstr-malloc.so"
+LD_PRELOAD="$LIB_UST:$LIB_UST_MALLOC" find -L / >/dev/null 2>&1 &
 PID=$!
 TRACE=auto
 USTCTL="$TESTDIR/../ustctl/ustctl"
This page took 0.023702 seconds and 4 git commands to generate.