Fix tests when lttng-ust is disabled
[lttng-tools.git] / tests / tools / runall.sh
1 #!/bin/bash
2
3 DIR=$(dirname $0)
4
5 tests=( $DIR/test_kernel_data_trace $DIR/test_sessions $DIR/test_ust_data_trace )
6 exit_code=0
7
8 function 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
26 start_tests
27
28 exit $exit_code
This page took 0.02893 seconds and 4 git commands to generate.