blob: d87924b9e1fe7e0797d44445565d2d2d86a1dad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/usr/bin/env sh
set -e
HERE=`dirname $0`
cd $HERE/..
ROOT=`pwd`
DBGDIR=$ROOT/build/Debug
RELDIR=$ROOT/build/Release
if [ "$1" = "--debug" ]; then
DEBUG=$1
echo "running debug build"
shift
fi
if [ "$1" != "--no-clean" ]; then
echo "cleaning build before tests ..."
$ROOT/scripts/cleanall.sh
else
shift
fi
echo "building before tests ..."
$ROOT/scripts/build.sh $DEBUG
echo "running test in debug build ..."
cd $DBGDIR && ctest $ROOT
if [ "$DEBUG" != "--debug" ]; then
echo "running test in release build ..."
cd $RELDIR && ctest $ROOT
echo "TEST PASSED"
else
echo "DEBUG TEST PASSED"
fi
|