From 1d93c0b8a578bb687302ba4703f0a0d073e81b2d Mon Sep 17 00:00:00 2001 From: ayeteadoe Date: Thu, 21 Aug 2025 17:08:59 -0700 Subject: [PATCH] Tests/LibTLS: Enable TestTLSHandshake in Windows CI --- Tests/LibTLS/CMakeLists.txt | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Tests/LibTLS/CMakeLists.txt b/Tests/LibTLS/CMakeLists.txt index 2c9bfd091d7..92119e787d5 100644 --- a/Tests/LibTLS/CMakeLists.txt +++ b/Tests/LibTLS/CMakeLists.txt @@ -1,15 +1,8 @@ set(TEST_SOURCES TestTLSCertificateParser.cpp + TestTLSHandshake.cpp ) -if (NOT WIN32 OR NOT ENABLE_WINDOWS_CI) - # FIXME: This test cannot find the default OpenSSL CA certificates on Windows CI - # https://github.com/LadybirdBrowser/ladybird/issues/5355 - list(APPEND TEST_SOURCES - TestTLSHandshake.cpp - ) -endif() - foreach(source IN LISTS TEST_SOURCES) lagom_test("${source}" LibTLS LIBS LibTLS LibCrypto WORKING_DIRECTORY ${Lagom_BINARY_DIR}) endforeach()