summaryrefslogtreecommitdiffstats
path: root/bin/rununittests.sh
blob: 538eab2ef8e03a95e497844026e39e09d4c3f128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

#convenient script to execute all unit tests

shell=`readlink -f "$0"`;
shell_path=`dirname $shell`;

SAVED_PWD=$PWD;
cd $shell_path/../build/tests/Debug/bin
export LD_LIBRARY_PATH=$shell_path/../build/Debug/bin:$LD_LIBRARY_PATH
export PATH=.
./tst_qvaluespace
./tst_qvaluespaceobject
./tst_qvaluespaceitem
./tst_qvaluespaceitem_oop

cd $SAVED_PWD