Fix: Wrong path in the overlap test
[lttng-tools.git] / tests / ust / runall.sh
... / ...
CommitLineData
1#!/bin/bash
2
3DIR=$(dirname $0)
4
5tests=( $DIR/run-ust-global-tests.sh $DIR/nprocesses/run \
6 $DIR/high-throughput/run $DIR/before-after/run \
7 $DIR/multi-session/run $DIR/overlap/run )
8
9# $DIR/low-throughput/run --> DEACTIVATED.
10# Use only for release. This test last 20 minutes
11
12exit_code=0
13
14function start_tests ()
15{
16 for bin in ${tests[@]};
17 do
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.024141 seconds and 4 git commands to generate.