summaryrefslogtreecommitdiffstats
path: root/bin/rununittests.sh
blob: 73f6fd4be844701d29d2c9413cb00295a77f5603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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_qmallocpool
./tst_qvaluespace
./tst_qvaluespaceobject
./tst_qvaluespaceitem
./tst_qvaluespaceitem_oop

cd $SAVED_PWD