From 5d055a099dad180b3c92328b7d28b34684398322 Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Mon, 17 Jul 2017 15:47:32 -0700 Subject: [PATCH] Don't build the async signal handler test on Windows Summary: `AsyncSignalHandler` is not currently supported on Windows, so we shouldn't be attempting to build it. Reviewed By: yfeldblum Differential Revision: D5437276 fbshipit-source-id: b3f281bfc501444bb22056860ee785a2beb9b671 --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8daaf52c..940e79a7 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -410,7 +410,6 @@ if (BUILD_TESTS) AsyncSSLSocketTest.h SOURCES AsyncPipeTest.cpp - AsyncSignalHandlerTest.cpp AsyncSocketExceptionTest.cpp AsyncSocketTest.cpp AsyncSocketTest2.cpp @@ -421,6 +420,8 @@ if (BUILD_TESTS) # This is disabled because it depends on things that don't exist # on Windows. #EventHandlerTest.cpp + # The async signal handler is not supported on Windows. + #AsyncSignalHandlerTest.cpp TEST async_timeout_test SOURCES AsyncTimeoutTest.cpp TEST AsyncUDPSocketTest SOURCES AsyncUDPSocketTest.cpp TEST DelayedDestructionTest SOURCES DelayedDestructionTest.cpp -- 2.34.1