Tests: remove declaration already present in utils.sh
[lttng-tools.git] / tests / regression / ust / test_event_tracef
... / ...
CommitLineData
1#!/bin/bash
2#
3# Copyright (C) - 2013 Christian Babeux <christian.babeux@efficios.com>
4# Copyright (C) - 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5#
6# This program is free software; you can redistribute it and/or modify it
7# under the terms of the GNU General Public License, version 2 only, as
8# published by the Free Software Foundation.
9#
10# This program is distributed in the hope that it will be useful, but WITHOUT
11# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13# more details.
14#
15# You should have received a copy of the GNU General Public License along with
16# this program; if not, write to the Free Software Foundation, Inc., 51
17# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19TEST_DESC="UST tracer - tracef events"
20
21CURDIR=$(dirname $0)/
22TESTDIR=$CURDIR/../..
23TESTAPP_PATH="$TESTDIR/utils/testapp"
24TESTAPP_NAME="gen-ust-tracef"
25TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
26SESSION_NAME="tracef"
27EVENT_NAME="lttng_ust_tracef:event"
28NUM_TESTS=9
29NR_ITER=100
30
31source $TESTDIR/utils/utils.sh
32
33if [ ! -x "$TESTAPP_BIN" ]; then
34 BAIL_OUT "No UST nevents binary detected."
35fi
36
37function test_event_tracef()
38{
39 create_lttng_session_ok $SESSION_NAME $TRACE_PATH
40 enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME
41 start_lttng_tracing_ok $SESSION_NAME
42
43 $TESTAPP_BIN $NR_ITER $NR_USEC_WAIT
44 ok $? "Traced application stopped."
45
46 stop_lttng_tracing_ok $SESSION_NAME
47 destroy_lttng_session_ok $SESSION_NAME
48
49 trace_match_only $EVENT_NAME $NR_ITER $TRACE_PATH
50
51 return $?
52}
53
54# MUST set TESTDIR before calling those functions
55plan_tests $NUM_TESTS
56
57print_test_banner "$TEST_DESC"
58
59start_lttng_sessiond
60
61TRACE_PATH=$(mktemp -d)
62test_event_tracef
63out=$?
64if [ $out -ne 0 ]; then
65 stop_lttng_sessiond
66 exit $out
67fi
68
69stop_lttng_sessiond
70
71rm -rf $TRACE_PATH
This page took 0.022925 seconds and 4 git commands to generate.