From 9c503a278cd4f3adc48c9ca2c3fd16b63bb71e37 Mon Sep 17 00:00:00 2001 From: John Barboza Date: Sun, 14 Jan 2018 16:04:59 -0500 Subject: [PATCH] zos,test: decrease pings to avoid timeout Fixes: https://github.com/libuv/libuv/issues/1691 PR-URL: https://github.com/libuv/libuv/pull/1704 Reviewed-By: Colin Ihrig Reviewed-By: Gireesh Punathil Reviewed-By: Santiago Gimeno --- test/test-ping-pong.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-ping-pong.c b/test/test-ping-pong.c index bdc96715..508f0db6 100644 --- a/test/test-ping-pong.c +++ b/test/test-ping-pong.c @@ -27,7 +27,7 @@ static int completed_pingers = 0; -#if defined(__CYGWIN__) || defined(__MSYS__) +#if defined(__CYGWIN__) || defined(__MSYS__) || defined(__MVS__) #define NUM_PINGS 100 /* fewer pings to avoid timeout */ #else #define NUM_PINGS 1000