summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-11-28 11:56:08 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-11-28 13:32:54 +0100
commit38fb4c110937fce98a563536ee54a8862487dcea (patch)
treee1fa029777752c495b38c1cfef2d6c1766031a1c
parentdd3403fb9de46335684969195f120d935f47a333 (diff)
Skip tests on qemu arm64
Just too slow Task-number: QTBUG-108993 Change-Id: I907118e2d72ae6e2c1b6953ff692d7b922cef74f Reviewed-by: Michal Klocek <michal.klocek@qt.io>
-rw-r--r--tests/auto/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/CMakeLists.txt b/tests/auto/CMakeLists.txt
index 6fff2b35c..14612a5b2 100644
--- a/tests/auto/CMakeLists.txt
+++ b/tests/auto/CMakeLists.txt
@@ -1,5 +1,8 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
+if(LINUX AND CMAKE_CROSSCOMPILING AND (${TEST_architecture_arch} STREQUAL "arm64"))
+ return() # FIXME
+endif()
if(TARGET Qt::WebEngineCore)
add_subdirectory(httpserver)
add_subdirectory(util)