summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-08-08 10:48:56 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-08-12 08:37:15 +0000
commitd2fa9c06a46c605c95a78b6f8916d9ecda9dddac (patch)
tree6430a54374f97f3ebc17fead07168510333b0bf0
parent42ca6c7247c00701a8c3c956ff81b8ecc887a7bf (diff)
Only skip arm64 qemu tests
It seems we can pass the arm32 tests. Task-number: QTBUG-105342 Change-Id: Ic5492e43cd327119305c3731701186710f9d59c6 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io> (cherry picked from commit bb0a39c5dab77cc6aba6819e038dfb8182c69861) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-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)