From e483c09166998a5922b91eeafb7988df26e1c432 Mon Sep 17 00:00:00 2001 From: Dmitri Tikhonov Date: Fri, 12 Feb 2021 09:02:52 -0500 Subject: [PATCH] Don't run HTTP/3 framing test on Windows --- tests/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 6aa08d4..0c64a2c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -44,7 +44,6 @@ SET(TESTS frame_reader frame_writer goaway_gquic_be - h3_framing hkdf hpi lsquic_hash @@ -84,6 +83,9 @@ IF (NOT CMAKE_SYSTEM_NAME STREQUAL "Windows") SET(TESTS ${TESTS} ack_merge) # No open_memstream() on Windows SET(TESTS ${TESTS} hcsi_reader) + # Takes forever on Windows, for whatever reason. Or maybe it's the + # MS C compilers. Something to investigate... later. + LIST(APPEND TESTS h3_framing) ENDIF()