mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
More memory is needed for the testimage that runs Qt ptests. Change-Id: I28f186cfae847261a5ae2b47091900da446c61dd Reviewed-by: Ari Parkkila <ari.parkkila@qt.io>
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
IMAGE_CLASSES += "testimage"
|
|
QB_MEM = "-m 8192"
|
|
TEST_SUITES = "ssh ping parselogs ptest"
|
|
IMAGE_FEATURES += "ssh-server-dropbear"
|
|
IMAGE_INSTALL:append = "\
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qt3d-ptest', '', d)} \
|
|
qt5compat-ptest \
|
|
qtbase-ptest \
|
|
qtcharts-ptest \
|
|
qtcoap-ptest \
|
|
qtconnectivity-ptest \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qtdatavis3d-ptest', '', d)} \
|
|
qtdeclarative-ptest \
|
|
qtdeviceutilities-ptest \
|
|
qtgraphs-ptest \
|
|
qtgrpc-ptest \
|
|
qthttpserver-ptest \
|
|
qtimageformats-ptest \
|
|
qtinterfaceframework-ptest \
|
|
qtlocation-ptest \
|
|
qtlottie-ptest \
|
|
qtmqtt-ptest \
|
|
qtmultimedia-ptest \
|
|
qtnetworkauth-ptest \
|
|
qtopcua-ptest \
|
|
qtpositioning-ptest \
|
|
qtquick3d-ptest \
|
|
qtquickdesigner-components-ptest \
|
|
qtquicktimeline-ptest \
|
|
qtremoteobjects-ptest \
|
|
qtscxml-ptest \
|
|
qtsensors-ptest \
|
|
qtserialbus-ptest \
|
|
qtserialport-ptest \
|
|
qtshadertools-ptest \
|
|
qtspeech-ptest \
|
|
qtsvg-ptest \
|
|
qttools-ptest \
|
|
qtvirtualkeyboard-ptest \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'qtwayland-ptest', '', d)} \
|
|
qtwebchannel-ptest \
|
|
qtwebsockets-ptest \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtpdf-ptest', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtwebengine-ptest', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtwebview-ptest', '', d)} \
|
|
${@bb.utils.contains('QT_COMMERCIAL_MODULES', '1', '\
|
|
qmlcompilerplus-ptest \
|
|
qtinsighttracker-ptest \
|
|
qtvncserver-ptest \
|
|
', '', d)} \
|
|
"
|