Add UST overlap tests
[lttng-tools.git] / tests / ust / overlap / run
CommitLineData
26b53d3b
DG
1#!/bin/bash
2
3DIR=$(dirname $0)
4
5tests=( $DIR/overlap.sh)
6
7exit_code=0
8
9function start_tests ()
10{
11 for bin in ${tests[@]};
12 do
13 ./$bin
14 # Test must return 0 to pass.
15 if [ $? -ne 0 ]; then
16 exit_code=1
17 break
18 fi
19 done
20}
21
22start_tests
23
24exit $exit_code
This page took 0.023086 seconds and 4 git commands to generate.