From 3ba0bb61ade424b973f9621fb89a3833519de630 Mon Sep 17 00:00:00 2001 From: Timur Pocheptsov Date: Thu, 26 Sep 2024 10:39:26 +0200 Subject: [PATCH] tst_QHostInfo: re-enable back the test on macOS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It went unnoticed (by me) the test was disabled via *.pro and later CMakeLists.txt rather than BLACKLIST I was checking back then. Fixes: QTBUG-129349 Change-Id: I509485bac9f32d544ef4bec120590a00d85ed608 Reviewed-by: MÃ¥rten Nordheim Reviewed-by: Thiago Macieira (cherry picked from commit e498a076ae035588ed6f29e91a20eb727d608342) Reviewed-by: Qt Cherry-pick Bot --- tests/auto/network/kernel/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/network/kernel/CMakeLists.txt b/tests/auto/network/kernel/CMakeLists.txt index df87e9d58ed..e92983139c9 100644 --- a/tests/auto/network/kernel/CMakeLists.txt +++ b/tests/auto/network/kernel/CMakeLists.txt @@ -17,7 +17,7 @@ if(QT_FEATURE_udpsocket) add_subdirectory(qnetworkdatagram) endif() add_subdirectory(qhostaddress) -if(QT_FEATURE_private_tests AND NOT MACOS AND NOT INTEGRITY) +if(QT_FEATURE_private_tests AND NOT INTEGRITY) add_subdirectory(qhostinfo) endif() if(QT_FEATURE_private_tests)