From c560a414738b3e30ac8128733988c823e3542ff7 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sat, 28 Dec 2019 19:23:18 +0100 Subject: [PATCH] Problem: mingw build broken Solution: check correct preprocessor define in test_reconnect_ivl to match the test invocation --- tests/test_reconnect_ivl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_reconnect_ivl.cpp b/tests/test_reconnect_ivl.cpp index 8044abcb..51be3368 100644 --- a/tests/test_reconnect_ivl.cpp +++ b/tests/test_reconnect_ivl.cpp @@ -101,7 +101,7 @@ int main (void) setup_test_environment (); UNITY_BEGIN (); -#if !defined(ZMQ_HAVE_WINDOWS) && !defined(ZMQ_HAVE_GNU) +#if defined(ZMQ_HAVE_IPC) && !defined(ZMQ_HAVE_GNU) RUN_TEST (test_reconnect_ivl_ipc); #endif RUN_TEST (test_reconnect_ivl_tcp_ipv4);