aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2021-02-03 15:02:02 +0200
committerSamuli Piippo <samuli.piippo@qt.io>2021-02-12 11:52:03 +0200
commiteaa9993682f02ef0420ec49b816da27db3ca00c2 (patch)
treeca9c098a9b6c2c403ff84b8a4d677479fcd312f3
parentae293f3e9f0be4d92c5c019b809758757a1c104e (diff)
tst_qqmlengine: remove unused QSKIP
The boot2qt condition is not true on boot2qt QEMU builds and the test passes correctly in CI using QEMU. Change-Id: Ifd87e543168f2dd8639a9287652e606a706f8ede Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
-rw-r--r--tests/auto/qml/qqmlengine/CMakeLists.txt5
-rw-r--r--tests/auto/qml/qqmlengine/tst_qqmlengine.cpp4
2 files changed, 0 insertions, 9 deletions
diff --git a/tests/auto/qml/qqmlengine/CMakeLists.txt b/tests/auto/qml/qqmlengine/CMakeLists.txt
index 88037fb009..f143dddb25 100644
--- a/tests/auto/qml/qqmlengine/CMakeLists.txt
+++ b/tests/auto/qml/qqmlengine/CMakeLists.txt
@@ -42,11 +42,6 @@ qt_internal_add_resource(tst_qqmlengine "qmake_immediate"
## Scopes:
#####################################################################
-qt_internal_extend_target(tst_qqmlengine CONDITION boot2qt
- DEFINES
- SKIP_GCCORRUPTION_TEST
-)
-
qt_internal_extend_target(tst_qqmlengine CONDITION ANDROID OR IOS
DEFINES
QT_QMLTEST_DATADIR=\\\":/data\\\"
diff --git a/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp b/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp
index 6c00494189..1abec1fa56 100644
--- a/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp
+++ b/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp
@@ -890,10 +890,6 @@ void tst_qqmlengine::qmlContextProperties()
void tst_qqmlengine::testGCCorruption()
{
-#ifdef SKIP_GCCORRUPTION_TEST
- QSKIP("Test too heavy for qemu");
-#endif
-
QQmlEngine e;
QQmlComponent c(&e, testFileUrl("testGCCorruption.qml"));