Tests: Fix missing TAP output in overlap test
[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
28print_test_banner "$TEST_DESC"
29
30if [ ! -x "$CURDIR/gen-nevents" ]; then
31 BAIL_OUT "No UST nevents binary detected."
32fi
33
34# MUST set TESTDIR before calling those functions
35
36test_before_apps() {
37 local out
38
39 # BEFORE application is spawned
40 create_lttng_session $SESSION_NAME $TRACE_PATH
41 enable_ust_lttng_event $SESSION_NAME $EVENT_NAME
42 start_lttng_tracing $SESSION_NAME
43
44 ./$CURDIR/gen-nevents $NR_ITER
45 ok $? "Start application to trace"
46
47 stop_lttng_tracing $SESSION_NAME
48 destroy_lttng_session $SESSION_NAME
49
50 trace_matches $EVENT_NAME $NR_ITER $TRACE_PATH
51
52 return $?
53}
54
55test_after_apps() {
56 local out
57
58 ./$CURDIR/gen-nevents 100 &
59 ok $? "Start application to trace"
60
61 # BEFORE application is spawned
62 create_lttng_session $SESSION_NAME $TRACE_PATH
63 enable_ust_lttng_event $SESSION_NAME $EVENT_NAME
64 start_lttng_tracing $SESSION_NAME
65
66 # At least hit one event
67 sleep 2
68
69 stop_lttng_tracing $SESSION_NAME
70 destroy_lttng_session $SESSION_NAME
71
72 out=$(babeltrace $TRACE_PATH | grep $EVENT_NAME | wc -l)
73 if [ $out -eq 0 ]; then
74 fail "Trace validation"
75 diag "No event(s) found. We are supposed to have at least one."
76 out=1
77 else
78 pass "Trace validation"
79 diag "Found $out event(s). Coherent."
80 out=0
81 fi
82
83 return $out
84}
85
86# MUST set TESTDIR before calling those functions
87plan_tests $NUM_TESTS
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.024767 seconds and 5 git commands to generate.