1 2 3 4 5 6 7 8 9 10 11
|
# Do not use CONFIG += testcase that would add a 'make check' because it also
# adds a 'make install' that installs the test cases, which we do not want.
# Instead add a 'make check' manually.
# Xvfb doesn't run on armhf/qemu
!contains(QMAKE_HOST.arch,armv7l) {
check.target = check
check.commands += cd $$_PRO_FILE_PWD_;
check.commands += env UITK_TEST_KEEP_RUNNING=1
check.commands += '$${ROOT_SOURCE_DIR}/tests/unit/runtest.sh "$$shadowed($$_PRO_FILE_PWD_)/$${TARGET}" "$$shadowed($$_PRO_FILE_PWD_)/$${TARGET}"';
}
|