Add kernel trace data structure init functions
[lttng-tools.git] / tests / runall.sh
CommitLineData
6e0ca3c2
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; either version 2
8# of the License, or (at your option) any later version.
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
20TEST_DIR=$(dirname $0)
21
22failed=0
23num_test=1
24
25function run() {
26 printf "%d) Running test $@\n" $num_test
27 echo "=================================="
28
29 # Running test
30 ./$@
31 if [ $? -ne 0 ]; then
32 let failed=$failed+1
33 printf "\nTest $@ FAILED\n\n"
34 else
35 printf "\nTest $@ PASSED\n\n"
36 fi
37
38 let num_test=$num_test+1
39}
40
41#### ADD TESTS HERE ####
42
43run ltt-sessiond/run.sh
44
45#### END TESTS HERE ####
46
47echo "--------------------------"
48if [ $failed -eq 0 ]; then
49 echo "All passed!"
50else
51 echo "$failed tests failed"
52fi
53echo "--------------------------"
54
55exit 0
This page took 0.024031 seconds and 4 git commands to generate.