Tests: Rename the tools tests runners to test_<test name>
[lttng-tools.git] / tests / regression / tools / filtering / runall
CommitLineData
2b1745e1
CB
1#!/bin/bash
2
3DIR=$(dirname $0)
4
ef834360 5tests=( $DIR/test_unsupported_op $DIR/test_invalid_filter $DIR/test_valid_filter )
2b1745e1
CB
6exit_code=0
7
8function start_tests ()
9{
10 for bin in ${tests[@]};
11 do
12 if [ ! -e $bin ]; then
13 echo -e "$bin not found, passing"
14 continue
15 fi
16
17 ./$bin
18 # Test must return 0 to pass.
19 if [ $? -ne 0 ]; then
20 exit_code=1
21 break
22 fi
23 done
24}
25
26start_tests
27
28exit $exit_code
This page took 0.023899 seconds and 4 git commands to generate.