qttools: add ptest

Add ptest for qttools by using provided testsuite.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Huang Qiyu
2017-04-12 18:20:44 +08:00
committed by Martin Jansa
parent e03d290bc0
commit 5f837b47f5
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
#!/bin/sh
./tst_qtdiag
./tst_qtattributionsscanner

View File

@@ -14,9 +14,12 @@ LIC_FILES_CHKSUM = " \
file://LICENSE.FDL;md5=6d9f2a9af4c8b8c3c769f6cc1b6aaf7e \
"
inherit ptest
DEPENDS += "qtbase qtdeclarative qtxmlpatterns"
SRC_URI += " \
file://run-ptest \
file://0002-assistant-help-fix-linking-of-dependent-libraries.patch \
file://0003-add-noqtwebkit-configuration.patch \
file://0004-linguist-tools-cmake-allow-overriding-the-location-f.patch \
@@ -33,3 +36,17 @@ EXTRA_QMAKEVARS_PRE += "${@bb.utils.contains('PACKAGECONFIG', 'qtwebkit', '', 'C
SRCREV = "30c10900adecca55faa1d59c2f0caac74b1f9df6"
BBCLASSEXTEND = "native nativesdk"
do_compile_ptest() {
export PATH=${STAGING_DIR_NATIVE}/usr/include/qt5:$PATH
cd ${S}/tests
qmake -o Makefile tests.pro
oe_runmake
}
do_install_ptest() {
mkdir -p ${D}${PTEST_PATH}
t=${D}${PTEST_PATH}
cp ${S}/tests/auto/qtdiag/tst_tdiag $t
cp ${S}/tests/auto/qtattributionsscanner/tst_qtattributionsscanner $t
}