From c5dcd5d90a8f3933b9064be2c116e94ec28aa13b Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 15 Feb 2015 18:20:59 +0000 Subject: [PATCH] [ADVAPI32_WINETEST] - Skip over service timeout tests because they take too long. This is not a bug, the tests are completing successfully -- however they are designed to cause service manager timeouts and take two minutes in doing so. Testbot time is too valuable to do this on every commit. ROSTESTS-151 svn path=/trunk/; revision=66302 --- rostests/winetests/advapi32/service.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rostests/winetests/advapi32/service.c b/rostests/winetests/advapi32/service.c index e7ef758209d..9d0337ff150 100644 --- a/rostests/winetests/advapi32/service.c +++ b/rostests/winetests/advapi32/service.c @@ -2266,6 +2266,12 @@ static void test_start_stop(void) goto cleanup; } + if (!winetest_interactive) + { + skip("ROSTESTS-151: Skipping service start timeout tests because they take too long. This is not a bug!\n"); + goto cleanup; + } + /* Again with a process that exits right away */ displayname = "Winetest Exit Service"; ret = ChangeServiceConfigA(svc_handle, SERVICE_NO_CHANGE, SERVICE_NO_CHANGE, SERVICE_NO_CHANGE, cmd, NULL, NULL, NULL, NULL, NULL, displayname);