aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2024-09-04 09:31:27 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2024-09-05 09:34:14 +0200
commitee017da5e5848ac82fbf427b479641b16e68a225 (patch)
tree9a28ef91bbef47576d2d424bf9a4118ae12520cc
parent6e35f7d4e26d4b885c75035ce239c69ddbeda406 (diff)
Exclude smart pointer tests on macOS
Task-number: PYSIDE-2854 Task-number: PYSIDE-2620 Change-Id: Iabf48c457396710103b19b6381c37989bbf0de0a Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
-rw-r--r--sources/shiboken6/tests/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/sources/shiboken6/tests/CMakeLists.txt b/sources/shiboken6/tests/CMakeLists.txt
index 05f6e9e60..3e65893d3 100644
--- a/sources/shiboken6/tests/CMakeLists.txt
+++ b/sources/shiboken6/tests/CMakeLists.txt
@@ -7,6 +7,11 @@ if(BUILD_TESTS)
find_package(Qt${QT_MAJOR_VERSION}Test 6.0 REQUIRED)
endif()
+# PYSIDE-2854, namespace std not seen by clang
+if(APPLE)
+ set(MINIMAL_TESTS 1)
+endif()
+
add_subdirectory(libminimal)
if(NOT DEFINED MINIMAL_TESTS)
add_subdirectory(libsample)