3 # Copyright (C) - 2013 Christian Babeux <christian.babeux@efficios.com>
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License, version 2 only, as
7 # published by the Free Software Foundation.
9 # This program is distributed in the hope that it will be useful, but WITHOUT
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 # You should have received a copy of the GNU General Public License along with
15 # this program; if not, write to the Free Software Foundation, Inc., 51
16 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 TEST_DESC
="Kernel tracer - All events"
24 source $TESTDIR/utils
/utils.sh
26 function test_all_event
()
28 TRACE_PATH
=$
(mktemp
-d)
29 SESSION_NAME
="kernel_all_events_basic"
31 create_lttng_session_ok
$SESSION_NAME $TRACE_PATH
33 lttng_enable_kernel_event
$SESSION_NAME
35 start_lttng_tracing_ok
38 validate_trace
"sched_switch" $TRACE_PATH
40 destroy_lttng_session_ok
$SESSION_NAME
45 # MUST set TESTDIR before calling those functions
48 print_test_banner
"$TEST_DESC"
50 if [ "$(id -u)" == "0" ]; then
56 skip
$isroot "Root access is needed. Skipping all tests." $NUM_TESTS ||