5f37450741b1ef4b7dbb359be4acd979a3d21023
[lttng-tools.git] / tests / ust / nevents / run
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=100
21
22 source $TESTDIR/utils.sh
23
24 echo -e "\n-----------------------------------"
25 echo -e "UST tracer - Generate $NR_ITER events"
26 echo -e "-------------------------------------"
27
28 if [ ! -x "$CURDIR/gen-nevents" ]; then
29 echo -e "No UST nevents binary detected. Passing."
30 exit 0
31 fi
32
33 # MUST set TESTDIR before calling those functions
34
35 start_sessiond
36
37 ./$CURDIR/ust-nevents $NR_ITER
38
39 stop_sessiond
40
41 rm -rf $TRACE_PATH
This page took 0.029998 seconds and 4 git commands to generate.