Tests: Convert the UST overlap test output to TAP
[lttng-tools.git] / tests / regression / ust / runall.sh
CommitLineData
e3fa263d
DG
1#!/bin/bash
2
355f483d
DG
3DIR=$(dirname $0)
4
e5be53a0
CB
5tests=( $DIR/run-ust-global-tests.sh $DIR/nprocesses/test_nprocesses \
6 $DIR/high-throughput/test_high_throughput $DIR/before-after/test_before_after \
7 $DIR/multi-session/test_multi_session $DIR/overlap/test_overlap )
4d5b973e
DG
8
9# $DIR/low-throughput/run --> DEACTIVATED.
10# Use only for release. This test last 20 minutes
11
e3fa263d
DG
12exit_code=0
13
14function start_tests ()
15{
16 for bin in ${tests[@]};
17 do
8e0dbb65 18 ./$bin
e3fa263d
DG
19 # Test must return 0 to pass.
20 if [ $? -ne 0 ]; then
21 exit_code=1
22 break
23 fi
24 done
25}
26
e3fa263d
DG
27start_tests
28
e3fa263d 29exit $exit_code
This page took 0.026736 seconds and 4 git commands to generate.