0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-14 09:47:56 +08:00

Problem: Some tests timeout on appveyor for POLLER=poll

Solution: Increase test timeouts for poll poller under Windows
This commit is contained in:
Simon Giesecke 2018-02-13 10:08:57 +01:00
parent 96131b5b4e
commit 0458b85dec

View File

@ -208,6 +208,11 @@ if(ZMQ_HAVE_CURVE)
set_tests_properties(test_security_curve PROPERTIES TIMEOUT 60)
endif()
if(WIN32 AND ${POLLER} MATCHES "poll")
set_tests_properties(test_many_sockets PROPERTIES TIMEOUT 30)
set_tests_properties(test_immediate PROPERTIES TIMEOUT 30)
endif()
#add additional required flags
#ZMQ_USE_TWEETNACL will already be defined when not using sodium
if(ZMQ_HAVE_CURVE AND NOT ZMQ_USE_TWEETNACL)