summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-08-08 10:48:56 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-08-12 00:42:02 +0000
commitbb0a39c5dab77cc6aba6819e038dfb8182c69861 (patch)
tree973ad10bde87cdbfde1a5aa6dbf54ff289e0bdf9 /tests
parentf1cb0ab451f3282648caec6ec359be356c921942 (diff)
Only skip arm64 qemu tests
It seems we can pass the arm32 tests. Pick-to: 6.4 Task-number: QTBUG-105342 Change-Id: Ic5492e43cd327119305c3731701186710f9d59c6 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/CMakeLists.txt b/tests/auto/CMakeLists.txt
index ec566ffd7..9b7672f67 100644
--- a/tests/auto/CMakeLists.txt
+++ b/tests/auto/CMakeLists.txt
@@ -1,6 +1,6 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-if(LINUX AND CMAKE_CROSSCOMPILING)
+if(LINUX AND CMAKE_CROSSCOMPILING AND (${TEST_architecture_arch} STREQUAL "arm64"))
return()# FIXME
endif()
if(TARGET Qt::WebEngineCore)