Use the libust.so and libustinstr-malloc.so from the build directory
[ust.git] / 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.02187 seconds and 4 git commands to generate.