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 - Kernel tracing"
20 TESTDIR
=$CURDIR/..
/..
/..
21 EVENT_NAME
="sched_switch"
24 TRACE_PATH
=$
(mktemp
-d)
28 source $TESTDIR/utils
/utils.sh
30 function test_kernel_before_start
()
32 diag
"Test kernel streaming with event enable BEFORE start"
33 create_lttng_session_uri
$SESSION_NAME net
://localhost
34 lttng_enable_kernel_event
$SESSION_NAME $EVENT_NAME
35 start_lttng_tracing_ok
$SESSION_NAME
38 stop_lttng_tracing_ok
$SESSION_NAME
39 destroy_lttng_session_ok
$SESSION_NAME
42 # Deactivated since this feature is not yet available where we can enable
43 # an event AFTERE tracing has started.
44 function test_kernel_after_start
()
46 diag
"Test kernel streaming with event enable AFTER start"
47 create_lttng_session_uri
$SESSION_NAME net
://localhost
48 start_lttng_tracing_ok
$SESSION_NAME
49 lttng_enable_kernel_event
$SESSION_NAME $EVENT_NAME
52 stop_lttng_tracing_ok
$SESSION_NAME
53 destroy_lttng_session_ok
$SESSION_NAME
58 print_test_banner
"$TEST_DESC"
60 if [ "$(id -u)" == "0" ]; then
66 skip
$isroot "Root access is needed. Skipping all kernel streaming tests." $NUM_TESTS ||
68 validate_lttng_modules_present
70 start_lttng_relayd
"-o $TRACE_PATH"
73 tests
=( test_kernel_before_start
)
75 for fct_test
in ${tests[@]};
77 SESSION_NAME
=$
(randstring
16 0)
81 validate_trace
$EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*
83 # Only delete if successful