3 # Copyright (C) - 2013 Julien Desfossez <julien.desfossez@efficios.com>
4 # David Goulet <dgoulet@efficios.com>
6 # This library is free software; you can redistribute it and/or modify it under
7 # the terms of the GNU Lesser General Public License as published by the Free
8 # Software Foundation; version 2.1 of the License.
10 # This library is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with this library; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 TEST_DESC
="Live - User space tracing"
22 TESTDIR
=$CURDIR/..
/..
/..
/
23 SESSIOND_BIN
="lttng-sessiond"
24 RELAYD_BIN
="lttng-relayd"
26 BABELTRACE_BIN
="babeltrace"
30 TESTAPP_PATH
="$TESTDIR/utils/testapp"
31 TESTAPP_NAME
="gen-ust-events"
32 TESTAPP_BIN
="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
35 EVENT_NAME
="tp:tptest"
37 TRACE_PATH
=$
(mktemp
-d)
39 DIR
=$
(readlink
-f $TESTDIR)
41 source $TESTDIR/utils
/utils.sh
45 function setup_live_tracing
()
47 # Create session with default path
48 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN create
$SESSION_NAME --live $DELAY_USEC \
49 -U net
://localhost
>/dev
/null
2>&1
51 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-event
"$EVENT_NAME" -s $SESSION_NAME -u >/dev
/null
2>&1
52 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN start
$SESSION_NAME >/dev
/null
2>&1
55 function clean_live_tracing
()
57 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN stop
$SESSION_NAME >/dev
/null
2>&1
58 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN destroy
$SESSION_NAME >/dev
/null
2>&1
62 if [ -z $
(pidof lt-
$SESSIOND_BIN) ]; then
63 $DIR/..
/src
/bin
/lttng-sessiond
/$SESSIOND_BIN --background --quiet --consumerd32-path="$DIR/../src/bin/lttng-consumerd/lttng-consumerd" --consumerd64-path="$DIR/../src/bin/lttng-consumerd/lttng-consumerd"
65 echo "Fail to start lttng-sessiond"
70 opt
="-o $TRACE_PATH --background"
71 if [ -z $
(pidof lt-
$RELAYD_BIN) ]; then
72 $DIR/..
/src
/bin
/lttng-relayd
/$RELAYD_BIN $opt >/dev
/null
2>&1
74 echo "Fail to start lttng-relayd (opt: $opt)"
81 # Run app in background
82 $TESTAPP_BIN $NR_ITER $NR_USEC_WAIT >/dev
/null
2>&1
85 $TESTDIR/regression
/tools
/live
/live_test
90 PID_RELAYD
=`pidof lt-$RELAYD_BIN`
93 echo "Kill lttng-relayd (pid: $PID_RELAYD)"
97 while [ -n "$out" ]; do
98 out
=$
(pidof lt-
$RELAYD_BIN)
104 PID_SESSIOND
=`pidof lt-$SESSIOND_BIN`
106 if [ $?
-eq 1 ]; then
107 echo "Kill sessiond daemon"
111 while [ -n "$out" ]; do
112 out
=$
(pidof lt-
$SESSIOND_BIN)
This page took 0.03569 seconds and 4 git commands to generate.