Fix: add delay before validating apps in test nproc
[lttng-tools.git] / tests / ust-nprocesses / run
CommitLineData
b6ca8ef5
DG
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
ec8f26de
DG
18CURDIR=$(dirname $0)/
19TESTDIR=$CURDIR/..
b6ca8ef5
DG
20NR_ITER=100
21TEST_BIN_NAME="gen-events-time"
22SESSION_NAME="ust-nprocesses"
23EVENT_NAME="ust_gen_event:tptest"
82541c34 24TEST_WAIT_SEC=5
b6ca8ef5
DG
25
26source $TESTDIR/utils.sh
27
28echo -e "\n-------------------------------------"
29echo -e "UST tracer - Generate $NR_ITER process"
30echo -e "---------------------------------------"
31
ec8f26de
DG
32if [ ! -e "$CURDIR/$TEST_BIN_NAME" ]; then
33 echo -e "No UST $TEST_BIN_NAME binary detected. Passing."
34 exit 0
35fi
36
b6ca8ef5
DG
37# MUST set TESTDIR before calling those functions
38
39# Start test for 1000 seconds
40
41for i in `seq 1 $NR_ITER`
42do
ec8f26de 43 ./$CURDIR/$TEST_BIN_NAME 1000 >/dev/null 2>&1 &
b6ca8ef5
DG
44done
45
0e82bf23
DG
46echo -n "Validating registered apps in 3 seconds..."
47
48sleep 3
b6ca8ef5 49
10a8a223 50listing=$($TESTDIR/../src/bin/lttng/$LTTNG_BIN list -u)
b6ca8ef5
DG
51reg_app_count=$(echo -n $listing | sed "s/$TEST_BIN_NAME/$TEST_BIN_NAME\n/g" | grep "$TEST_BIN_NAME" | wc -l)
52if [ "$reg_app_count" -ne "$NR_ITER" ]; then
53 echo -e "$reg_app_count apps listed. Expected $NR_ITER \e[1;31mFAILED\e[0m"
54else
55 echo -e "\e[1;32mOK\e[0m"
56fi
57
ec8f26de
DG
58TRACE_PATH=$(mktemp -d)
59
b6ca8ef5
DG
60create_lttng_session $SESSION_NAME $TRACE_PATH
61
62enable_ust_lttng_event $SESSION_NAME $EVENT_NAME
63start_tracing $SESSION_NAME
64
65echo "Sleeping $TEST_WAIT_SEC seconds for tracing to start everywhere"
66sleep $TEST_WAIT_SEC
67
68stop_tracing $SESSION_NAME
69destroy_lttng_session $SESSION_NAME
70
71rm -rf $TRACE_PATH
72
73echo -e -n "Killing all spawned applications..."
74killall -q $TEST_BIN_NAME >/dev/null 2>&1 &
75echo -e "\e[1;32mOK\e[0m"
76exit 0
This page took 0.02546 seconds and 4 git commands to generate.