From adc5104e2ae1eff78298d5efa8ef481f234f8053 Mon Sep 17 00:00:00 2001 From: Xaver Hugl Date: Sat, 22 Apr 2023 23:42:11 +0200 Subject: [PATCH] autotests/drm: disable tests to work around FreeBSD CI issues The tests don't do anything platform specific, so test only on Linux until the cause of the problems is found --- autotests/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/autotests/CMakeLists.txt b/autotests/CMakeLists.txt index 3466f3e1e7..6e9d33e9cb 100644 --- a/autotests/CMakeLists.txt +++ b/autotests/CMakeLists.txt @@ -3,7 +3,11 @@ remove_definitions(-DQT_USE_QSTRINGBUILDER) add_subdirectory(libkwineffects) add_subdirectory(integration) add_subdirectory(libinput) -add_subdirectory(drm) +# drm autotests are broken on FreeBSD for yet unknown reasons +# As the test isn't doing anything platform specific, only run it on Linux +if(CMAKE_SYSTEM_NAME MATCHES "Linux") + add_subdirectory(drm) +endif() ######################################################## # Test WindowPaintData