blob: d9a4043282a1969d6d31d4cf6c0f0932a5e3456e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
cd ..
make clean all OPT=-gl
if [ $? != 0 ]; then
exit
fi
cd tests
fpc dbtestframework.pas -glh -Fu../units/x86_64-linux/
if [ $? != 0 ]; then
exit
fi
if [ "$1" != "" ]; then
./dbtestframework --suite=$1
else
./dbtestframework
fi
#
#
|