mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 07:03:41 +02:00
20 lines
259 B
Bash
Executable File
20 lines
259 B
Bash
Executable File
#!/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
|
|
#
|
|
#
|
|
|