From 5f63bcb39ce2f0982a2c38148d4fca7e8acdc123 Mon Sep 17 00:00:00 2001 From: Yannick Brosseau Date: Sun, 20 Feb 2011 20:30:05 -0500 Subject: [PATCH] Use the libust.so and libustinstr-malloc.so from the build directory Signed-off-by: Yannick Brosseau Signed-off-by: Mathieu Desnoyers --- tests/manual_mode_tracing.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/manual_mode_tracing.sh b/tests/manual_mode_tracing.sh index bd85083..19044ba 100755 --- a/tests/manual_mode_tracing.sh +++ b/tests/manual_mode_tracing.sh @@ -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" -- 2.34.1