3 # Copyright (C) - 2012 David Goulet <dgoulet@efficios.com>
5 # This library is free software; you can redistribute it and/or modify it under
6 # the terms of the GNU Lesser General Public License as published by the Free
7 # Software Foundation; version 2.1 of the License.
9 # This library is distributed in the hope that it will be useful, but WITHOUT
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
14 # You should have received a copy of the GNU Lesser General Public License
15 # along with this library; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 TEST_DESC
="Streaming - User space tracing"
20 TESTDIR
=$CURDIR/..
/..
/..
21 BIN_NAME
="gen-ust-events"
23 EVENT_NAME
="tp:tptest"
26 TRACE_PATH
=$
(mktemp
-d)
30 source $TESTDIR/utils
/utils.sh
32 print_test_banner
"$TEST_DESC"
34 if [ ! -x "$CURDIR/$BIN_NAME" ]; then
35 BAIL_OUT
"No UST nevents binary detected."
38 function lttng_create_session_uri
40 # Create session with default path
41 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN create
$SESSION_NAME -U net
://localhost
>/dev
/null
2>&1
42 ok $?
"Create session with default path"
48 while [ -n "$(pidof $BIN_NAME)" ]; do
51 pass
"Wait for applications to end"
54 # MUST set TESTDIR before calling those functions
56 function test_ust_before_start
()
58 diag
"Test UST streaming BEFORE tracing starts"
59 lttng_create_session_uri
60 enable_ust_lttng_event
$SESSION_NAME $EVENT_NAME
62 # Run 5 times with a 1 second delay
63 .
/$CURDIR/$BIN_NAME 5 1000000 >/dev
/null
2>&1 &
65 start_lttng_tracing
$SESSION_NAME
69 stop_lttng_tracing
$SESSION_NAME
70 destroy_lttng_session
$SESSION_NAME
73 function test_ust_after_start
()
75 diag
"Test UST streaming AFTER tracing starts"
76 lttng_create_session_uri
77 enable_ust_lttng_event
$SESSION_NAME $EVENT_NAME
78 start_lttng_tracing
$SESSION_NAME
80 # Run 5 times with a 1 second delay
81 .
/$CURDIR/$BIN_NAME 5 1000000 >/dev
/null
2>&1 &
85 stop_lttng_tracing
$SESSION_NAME
86 destroy_lttng_session
$SESSION_NAME
92 start_lttng_relayd
"-o $TRACE_PATH"
94 tests
=( test_ust_before_start test_ust_after_start
)
96 for fct_test
in ${tests[@]};
98 SESSION_NAME
=$
(randstring
16 0)
102 validate_trace
$EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*
103 if [ $?
-eq 0 ]; then
104 # Only delete if successful