3 # Copyright 2010 Ericsson AB
5 # This file is part of LTTng-UST.
7 # LTTng-UST is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # LTTng-UST is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with LTTng-UST. If not, see <http://www.gnu.org/licenses/>.
20 # This tests manual mode tracing, meaning the process is first started, then
21 # the tracing is set up with ustctl. Then verifications are done to make sure
22 # all the events that were supposed to be in the trace are there.
26 source $TESTDIR/test_functions.sh
27 source $TESTDIR/tap.sh
29 starttest
"Manual mode tracing"
33 TRACE_DIR
="/tmp/ust-testsuite-manual-trace"
37 pidfilepath
="/tmp/ust-testsuite-$USER-$(date +%Y%m%d%H%M%S%N)-ust-consumerd-pid"
38 mkfifo -m 0600 "$pidfilepath"
40 ust-consumerd
--pidfile "$pidfilepath" -o "$TRACE_DIR" >/dev
/null
2>&1 &
41 UST_CONSUMERD_PID
="$(<$pidfilepath)"
43 LD_PRELOAD
=/usr
/local
/lib
/libust.so
.0.0.0:/usr
/local
/lib
/libustinstr-malloc.so
find -L / >/dev
/null
2>&1 &
47 okx ustctl list-markers
$PID
48 okx ustctl enable-marker
$PID $TRACE ust
/malloc
49 okx ustctl enable-marker
$PID $TRACE ust
/free
50 okx ustctl create-trace
$PID $TRACE
51 okx ustctl alloc-trace
$PID $TRACE
52 okx ustctl start-trace
$PID $TRACE
55 okx ustctl stop-trace
$PID $TRACE
56 okx ustctl destroy-trace
$PID $TRACE
58 kill -SIGTERM ${UST_CONSUMERD_PID}
59 wait ${UST_CONSUMERD_PID}
61 trace_matches
-N "ust.malloc" "^ust.malloc:" "$TRACE_DIR"
This page took 0.031817 seconds and 4 git commands to generate.