Tests: Replace usage of gen-ust-events testapp in streaming tests
[lttng-tools.git] / tests / regression / ust / before-after / test_before_after
... / ...
CommitLineData
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
17TEST_DESC="UST tracer - Start tracing before and after execution"
18
19CURDIR=$(dirname $0)/
20TESTDIR=$CURDIR/../../..
21NR_ITER=100
22SESSION_NAME="per-session"
23EVENT_NAME="ust_gen_nevents:tptest"
24NUM_TESTS=16
25
26source $TESTDIR/utils/utils.sh
27
28if [ ! -x "$CURDIR/gen-nevents" ]; then
29 BAIL_OUT "No UST nevents binary detected."
30fi
31
32# MUST set TESTDIR before calling those functions
33
34test_before_apps() {
35 local out
36
37 # BEFORE application is spawned
38 create_lttng_session $SESSION_NAME $TRACE_PATH
39 enable_ust_lttng_event $SESSION_NAME $EVENT_NAME
40 start_lttng_tracing $SESSION_NAME
41
42 ./$CURDIR/gen-nevents $NR_ITER
43 ok $? "Start application to trace"
44
45 stop_lttng_tracing $SESSION_NAME
46 destroy_lttng_session $SESSION_NAME
47
48 trace_matches $EVENT_NAME $NR_ITER $TRACE_PATH
49
50 return $?
51}
52
53test_after_apps() {
54 local out
55
56 ./$CURDIR/gen-nevents 100 &
57 ok $? "Start application to trace"
58
59 # BEFORE application is spawned
60 create_lttng_session $SESSION_NAME $TRACE_PATH
61 enable_ust_lttng_event $SESSION_NAME $EVENT_NAME
62 start_lttng_tracing $SESSION_NAME
63
64 # At least hit one event
65 sleep 2
66
67 stop_lttng_tracing $SESSION_NAME
68 destroy_lttng_session $SESSION_NAME
69
70 out=$(babeltrace $TRACE_PATH | grep $EVENT_NAME | wc -l)
71 if [ $out -eq 0 ]; then
72 fail "Trace validation"
73 diag "No event(s) found. We are supposed to have at least one."
74 out=1
75 else
76 pass "Trace validation"
77 diag "Found $out event(s). Coherent."
78 out=0
79 fi
80
81 return $out
82}
83
84# MUST set TESTDIR before calling those functions
85plan_tests $NUM_TESTS
86
87print_test_banner "$TEST_DESC"
88
89start_lttng_sessiond
90
91diag "Start application BEFORE tracing was started"
92
93TRACE_PATH=$(mktemp -d)
94
95test_before_apps
96out=$?
97if [ $out -ne 0 ]; then
98 stop_lttng_sessiond
99 exit $out
100fi
101
102rm -rf $TRACE_PATH
103
104diag "Start application AFTER tracing was started"
105
106TRACE_PATH=$(mktemp -d)
107
108test_after_apps
109out=$?
110if [ $out -ne 0 ]; then
111 stop_lttng_sessiond
112 exit $out
113fi
114
115stop_lttng_sessiond
116
117rm -rf $TRACE_PATH
This page took 0.026383 seconds and 5 git commands to generate.