Commit a656b399 authored by Pieter Hintjens's avatar Pieter Hintjens

Merge pull request #1496 from brian-peloton/macro-to-disable-test-timeout

Add a way to disable libzmq's internal test timeout.
parents 94b6fca4 cb0491ca
...@@ -282,8 +282,10 @@ void setup_test_environment() ...@@ -282,8 +282,10 @@ void setup_test_environment()
// abort test after 121 seconds // abort test after 121 seconds
alarm(121); alarm(121);
#else #else
# if !defined ZMQ_DISABLE_TEST_TIMEOUT
// abort test after 60 seconds // abort test after 60 seconds
alarm(60); alarm(60);
# endif
#endif #endif
#endif #endif
#if defined __MVS__ #if defined __MVS__
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment