Add before-after test
[lttng-tools.git] / tests / ust / nevents / ust-nevents
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
17
18 CURDIR=$(dirname $0)/
19 TESTDIR=$CURDIR/../..
20 NR_ITER=$1
21 SESSION_NAME="ust-nevents"
22 EVENT_NAME="ust_gen_nevents:tptest"
23
24 source $TESTDIR/utils.sh
25
26 TRACE_PATH=$(mktemp -d)
27
28 # MUST set TESTDIR before calling those functions
29
30 create_lttng_session $SESSION_NAME $TRACE_PATH
31
32 enable_ust_lttng_event $SESSION_NAME $EVENT_NAME
33 start_tracing $SESSION_NAME
34
35 # Start test
36 ./$CURDIR/gen-nevents $NR_ITER
37
38 stop_tracing $SESSION_NAME
39 destroy_lttng_session $SESSION_NAME
40
41 trace_matches $EVENT_NAME $NR_ITER $TRACE_PATH
42
43 rm -rf $TRACE_PATH
This page took 0.030589 seconds and 4 git commands to generate.