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
20 BIN_NAME
="gen-ust-events"
22 EVENT_NAME
="tp:tptest"
25 TRACE_PATH
=$
(mktemp
-d)
27 source $TESTDIR/utils.sh
29 echo -e "\n-------------------------------"
30 echo -e " Streaming - User space tracing "
31 echo -e "--------------------------------"
33 if [ ! -x "$CURDIR/$BIN_NAME" ]; then
34 echo -e "No UST nevents binary detected. Passing."
38 function lttng_create_session
40 # Create session with default path
41 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN create
$SESSION_NAME >/dev
/null
2>&1
44 function lttng_enable_consumer
46 # Create session with default path
47 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-consumer
-u net
://localhost
>/dev
/null
2>&1
52 echo -n "Waiting for applications to end"
53 while [ -n "$(pidof $BIN_NAME)" ]; do
60 # MUST set TESTDIR before calling those functions
62 function test_ust_before_start
()
64 echo -e "\n=== Testing UST streaming BEFORE tracing starts\n"
67 enable_ust_lttng_event
$SESSION_NAME $EVENT_NAME
69 # Run 5 times with a 1 second delay
70 .
/$CURDIR/$BIN_NAME 5 1000000 >/dev
/null
2>&1 &
72 start_tracing
$SESSION_NAME
75 stop_tracing
$SESSION_NAME
76 destroy_lttng_session
$SESSION_NAME
79 function test_ust_after_start
()
81 echo -e "\n=== Testing UST streaming AFTER tracing starts\n"
84 enable_ust_lttng_event
$SESSION_NAME $EVENT_NAME
85 start_tracing
$SESSION_NAME
87 # Run 5 times with a 1 second delay
88 .
/$CURDIR/$BIN_NAME 5 1000000 >/dev
/null
2>&1 &
91 stop_tracing
$SESSION_NAME
92 destroy_lttng_session
$SESSION_NAME
96 lttng_start_relayd
"-o $TRACE_PATH"
98 tests
=( test_ust_before_start test_ust_after_start
)
100 for fct_test
in ${tests[@]};
102 SESSION_NAME
=$
(randstring
16 0)
106 validate_trace
$EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*
107 if [ $?
-eq 0 ]; then
108 # Only delete if successful