Tests: Move unit tests to tests/unit
[lttng-tools.git] / tests / regression / tools / runall.sh
CommitLineData
e3fa263d
DG
1#!/bin/bash
2
355f483d
DG
3DIR=$(dirname $0)
4
81d029da 5tests=( $DIR/streaming/runall $DIR/health/runall $DIR/filtering/runall )
3774a99a 6
e3fa263d
DG
7exit_code=0
8
9function start_tests ()
10{
11 for bin in ${tests[@]};
12 do
8acbe07d
DG
13 if [ ! -e $bin ]; then
14 echo -e "$bin not found, passing"
15 continue
16 fi
17
8e0dbb65 18 ./$bin
e3fa263d
DG
19 # Test must return 0 to pass.
20 if [ $? -ne 0 ]; then
21 exit_code=1
22 break
23 fi
24 done
25}
26
e3fa263d
DG
27start_tests
28
e3fa263d 29exit $exit_code
This page took 0.026838 seconds and 4 git commands to generate.