Refactor: test: wrapper for destroy_lttng_session
[lttng-tools.git] / tests / regression / ust / nprocesses / test_nprocesses
... / ...
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
17NUM_PROCESS=30
18TEST_DESC="UST tracer - Generate $NUM_PROCESS process"
19
20CURDIR=$(dirname $0)/
21TESTDIR=$CURDIR/../../..
22NR_ITER=-1 # infinite loop
23NR_USEC_WAIT=1000000
24TESTAPP_PATH="$TESTDIR/utils/testapp"
25TESTAPP_NAME="gen-ust-events"
26TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
27SESSION_NAME="ust-nprocesses"
28EVENT_NAME="tp:tptest"
29TEST_WAIT_SEC=5
30NUM_TESTS=9
31APPS_PID=
32
33source $TESTDIR/utils/utils.sh
34
35if [ ! -x "$TESTAPP_BIN" ]; then
36 BAIL_OUT "No UST $TESTAPP_BIN binary detected."
37fi
38
39# MUST set TESTDIR before calling those functions
40
41plan_tests $NUM_TESTS
42
43print_test_banner "$TEST_DESC"
44
45start_lttng_sessiond
46
47# Start tests. Each is an infinite tracing loop.
48
49file_sync_after_first=$(mktemp -u)
50file_sync_before_last=$(mktemp -u)
51
52diag "Starting $NUM_PROCESS test applications"
53for i in `seq 1 $NUM_PROCESS`
54do
55 $TESTAPP_BIN $NR_ITER $NR_USEC_WAIT ${file_sync_after_first} ${file_sync_before_last} >/dev/null 2>&1 &
56 APPS_PID="${APPS_PID} ${!}"
57done
58
59diag "Waiting for applications to be registered to sessiond"
60
61reg_app_count=0
62while [ $reg_app_count -ne $NUM_PROCESS ]; do
63 listing=$($TESTDIR/../src/bin/lttng/$LTTNG_BIN list -u)
64 reg_app_count=$(echo -n $listing | sed "s#$TESTAPP_BIN#$TESTAPP_BIN\n#g" | grep "$TESTAPP_BIN" | wc -l)
65done
66
67pass "All applications are registered to sessiond"
68
69TRACE_PATH=$(mktemp -d)
70
71create_lttng_session_ok $SESSION_NAME $TRACE_PATH
72
73enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME
74start_lttng_tracing_ok $SESSION_NAME
75
76touch ${file_sync_before_last}
77
78# We don't validate whether the applications have traced here, rather
79# just that they registered to sessiond (above).
80
81stop_lttng_tracing_ok $SESSION_NAME
82destroy_lttng_session_ok $SESSION_NAME
83
84#TODO: add trace validation.
85
86rm -rf $TRACE_PATH
87
88diag "Stopping all spawned applications"
89for p in ${APPS_PID}; do
90 kill ${p}
91 wait ${p} 2>/dev/null
92done
93APPS_PID=
94pass "Stopped all spawned applications"
95
96rm -f ${file_sync_after_first}
97rm -f ${file_sync_before_last}
98
99stop_lttng_sessiond
This page took 0.022189 seconds and 4 git commands to generate.