Add unit tests for URIs
[lttng-tools.git] / tests / tools / runall.sh
... / ...
CommitLineData
1#!/bin/bash
2
3DIR=$(dirname $0)
4
5tests=( $DIR/test_kernel_data_trace $DIR/test_sessions $DIR/test_ust_data_trace \
6 $DIR/streaming/runall )
7exit_code=0
8
9function start_tests ()
10{
11 for bin in ${tests[@]};
12 do
13 if [ ! -e $bin ]; then
14 echo -e "$bin not found, passing"
15 continue
16 fi
17
18 ./$bin
19 # Test must return 0 to pass.
20 if [ $? -ne 0 ]; then
21 exit_code=1
22 break
23 fi
24 done
25}
26
27start_tests
28
29exit $exit_code
This page took 0.022221 seconds and 4 git commands to generate.