Fix tests to output waiting time
[lttng-tools.git] / benchmark / run-boot-time.sh
CommitLineData
3c6bae61
DG
1#!/bin/bash
2#
3# Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4#
5# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU General Public License
7# as published by the Free Software Foundation; only version 2
8# of the License.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18#
19
24d67bf1 20SESSIOND_BIN="lttng-sessiond"
3c6bae61
DG
21RESULTS_PATH="/tmp/lttng-bench-results.txt"
22BASEDIR=`dirname $0`
23
85c434ee 24echo "Starting session daemon"
3c6bae61 25
24d67bf1 26BENCH_BOOT_PROCESS=1 $BASEDIR/../lttng-sessiond/$SESSIOND_BIN -v >/dev/null 2>&1 &
85c434ee
DG
27
28PID_SESSIOND=$!
29if [ -z $PID_SESSIOND ]; then
3c6bae61
DG
30 echo -e '\e[1;31mFAILED\e[0m'
31 exit 1
32else
33 echo -e "\e[1;32mOK\e[0m"
85c434ee 34 echo "PID session daemon: $PID_SESSIOND"
3c6bae61
DG
35fi
36
3c6bae61
DG
37# Wait for the benchmark to run
38echo -n "Waiting."
39sleep 1
40echo -n "."
41sleep 1
85c434ee 42echo "."
3c6bae61
DG
43sleep 1
44
45kill $PID_SESSIOND
46
85c434ee
DG
47wait $PID_SESSIOND
48
49echo "Benchmarks done in $RESULTS_PATH"
3c6bae61
DG
50
51exit 0
This page took 0.030488 seconds and 4 git commands to generate.