mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
16 lines
189 B
Bash
Executable File
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 $?
|