Update version to 2.0.0 stable
[lttng-tools.git] / tests / lttng / runall.sh
... / ...
CommitLineData
1#!/bin/bash
2
3tests=( lttng/run-kernel-tests.sh lttng/run-ust-global-tests.sh )
4exit_code=0
5
6function start_tests ()
7{
8 for bin in ${tests[@]};
9 do
10 ./$bin
11 # Test must return 0 to pass.
12 if [ $? -ne 0 ]; then
13 exit_code=1
14 break
15 fi
16 done
17}
18
19start_tests
20
21exit $exit_code
This page took 0.022569 seconds and 4 git commands to generate.