From 96d21faa0156bbf0707b6ef1642245fdd2d55d00 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 10 Sep 2021 18:49:12 -0700 Subject: [PATCH] Re-enable tst_qplugin on Linux It was disabled during the CMake port, but appears to work now. Change-Id: I2de1b4dfacd443148279fffd16a3a166a3e10671 Reviewed-by: Oswald Buddenhagen Reviewed-by: Qt CI Bot --- tests/auto/corelib/plugin/CMakeLists.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/auto/corelib/plugin/CMakeLists.txt b/tests/auto/corelib/plugin/CMakeLists.txt index e0ac398144..14ce4c316d 100644 --- a/tests/auto/corelib/plugin/CMakeLists.txt +++ b/tests/auto/corelib/plugin/CMakeLists.txt @@ -12,10 +12,5 @@ if(QT_FEATURE_library AND NOT ANDROID) endif() # QTBUG-87438 # special case if(QT_BUILD_SHARED_LIBS AND QT_FEATURE_library AND NOT ANDROID) - # special case begin - # QTBUG-85364 - if(NOT LINUX) - add_subdirectory(qplugin) - endif() - # special case end + add_subdirectory(qplugin) endif()