From c2b131e793697759326a7f61ebf6a4b76f990d29 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 13 Nov 2016 14:54:06 +0000 Subject: [PATCH] [WS2_32_APITEST] - Skip nonblocking tests since they hang on testbot ROSTESTS-247 svn path=/trunk/; revision=73225 --- rostests/apitests/ws2_32/nonblocking.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rostests/apitests/ws2_32/nonblocking.c b/rostests/apitests/ws2_32/nonblocking.c index 40286cb1751..328f823d3a8 100644 --- a/rostests/apitests/ws2_32/nonblocking.c +++ b/rostests/apitests/ws2_32/nonblocking.c @@ -32,6 +32,12 @@ START_TEST(nonblocking) struct timeval tval = { 0 }; char address[100]; + if (!winetest_interactive) + { + skip("ROSTESTS-247: Skipping ws2_32_apitest:nonblocking because it times out on testbot\n"); + return; + } + if (WSAStartup(MAKEWORD(2, 2), &WsaData) != 0) { skip("WSAStartup failed\n");