mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
ca160731b9
Autotests: No longer move autotests binary to $root/bin directory Autotests: No longer needed to specify NO_SYSTEM_DATAPATH define
15 lines
148 B
Bash
Executable File
15 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
# run_tests.sh
|
|
|
|
QMAKE="qmake"
|
|
|
|
if [ -n "$1" ]; then
|
|
QMAKE=$1
|
|
fi
|
|
|
|
cd ../tests/autotests
|
|
($QMAKE && make) || exit 1
|
|
|
|
./autotests
|
|
exit $?
|