Tests: Fix first line of output to follow TAP guidelines
[lttng-tools.git] / tests / regression / tools / streaming / test_kernel
CommitLineData
f4e40ab6
DG
1#!/bin/bash
2#
3# Copyright (C) - 2012 David Goulet <dgoulet@efficios.com>
4#
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.
8#
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
12# details.
13#
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
c38b5107 17TEST_DESC="Streaming - Kernel tracing"
f4e40ab6
DG
18
19CURDIR=$(dirname $0)/
9ac429ef 20TESTDIR=$CURDIR/../../..
f4e40ab6
DG
21EVENT_NAME="sched_switch"
22PID_RELAYD=0
23SESSION_NAME=""
24
173af62f
DG
25TRACE_PATH=$(mktemp -d)
26
7972aab2 27NUM_TESTS=10
d346ccad 28
9ac429ef 29source $TESTDIR/utils/utils.sh
f4e40ab6 30
f4e40ab6
DG
31# LTTng kernel modules check
32out=`ls /lib/modules/$(uname -r)/extra | grep lttng`
33if [ -z "$out" ]; then
d346ccad 34 BAIL_OUT "LTTng modules not detected."
f4e40ab6
DG
35fi
36
785d2d0d 37function lttng_create_session_uri
f4e40ab6 38{
f4e40ab6 39 # Create session with default path
785d2d0d 40 $TESTDIR/../src/bin/lttng/$LTTNG_BIN create $SESSION_NAME -U net://localhost >/dev/null 2>&1
d346ccad
CB
41
42 ok $? "Create session $SESSION_NAME"
f4e40ab6
DG
43}
44
45function test_kernel_before_start ()
46{
d346ccad 47 diag "Test kernel streaming with event enable BEFORE start"
785d2d0d 48 lttng_create_session_uri
f4e40ab6 49 lttng_enable_kernel_event $SESSION_NAME $EVENT_NAME
fb3268e3 50 start_lttng_tracing $SESSION_NAME
f4e40ab6
DG
51 # Give a second
52 sleep 1
fb3268e3 53 stop_lttng_tracing $SESSION_NAME
f4e40ab6 54 destroy_lttng_session $SESSION_NAME
df29d3c3
DG
55
56 # We can not predict _yet_ when the trace is available so we have to do a
57 # arbitratry sleep to validate the trace.
d346ccad 58 diag "Wait 3 seconds for the trace to be written on disk"
df29d3c3 59 for i in `seq 1 3`; do
df29d3c3
DG
60 sleep 1
61 done
f4e40ab6
DG
62}
63
173af62f
DG
64# Deactivated since this feature is not yet available where we can enable
65# an event AFTERE tracing has started.
f4e40ab6
DG
66function test_kernel_after_start ()
67{
d346ccad 68 diag "Test kernel streaming with event enable AFTER start"
785d2d0d 69 lttng_create_session_uri
fb3268e3 70 start_lttng_tracing $SESSION_NAME
f4e40ab6
DG
71 lttng_enable_kernel_event $SESSION_NAME $EVENT_NAME
72 # Give a second
73 sleep 1
fb3268e3 74 stop_lttng_tracing $SESSION_NAME
f4e40ab6
DG
75 destroy_lttng_session $SESSION_NAME
76}
77
d346ccad 78plan_tests $NUM_TESTS
f4e40ab6 79
e3bef725
CB
80print_test_banner "$TEST_DESC"
81
d346ccad
CB
82if [ "$(id -u)" == "0" ]; then
83 isroot=1
84else
85 isroot=0
86fi
f4e40ab6 87
d346ccad
CB
88skip $isroot "Root access is needed. Skipping all kernel streaming tests." $NUM_TESTS ||
89{
d346ccad 90 start_lttng_relayd "-o $TRACE_PATH"
7972aab2 91 start_lttng_sessiond
d346ccad
CB
92
93 tests=( test_kernel_before_start )
94
95 for fct_test in ${tests[@]};
96 do
97 SESSION_NAME=$(randstring 16 0)
98 ${fct_test}
99
100 # Validate test
101 validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*
102 if [ $? -eq 0 ]; then
103 # Only delete if successful
104 rm -rf $TRACE_PATH
105 else
106 break
107 fi
108 done
f4e40ab6 109
d346ccad
CB
110 stop_lttng_sessiond
111 stop_lttng_relayd
112}
This page took 0.029213 seconds and 4 git commands to generate.