1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/scripts/run_tests.sh

16 lines
189 B
Bash
Executable File

#!/bin/bash
# run_tests.sh
QMAKE="qmake"
if [ -n "$1" ]; then
QMAKE=$1
fi
cd ../tests/autotests
($QMAKE DEFINES+=NO_SYSTEM_DATAPATH && make) || exit 1
cd ../../bin
./autotests
exit $?