From bfebe892d9498ed5718368c0843635e22c7c0c26 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Thu, 10 Nov 2011 22:34:31 +0000 Subject: [PATCH] [ADVAPI32_WINETEST] - Skip service start timeout tests. They cannot time out until services uses asynchronous I/O. See issue #6646 for more details. svn path=/trunk/; revision=54346 --- 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 ecf3a5e5f79..cff780bcfc7 100644 --- a/rostests/winetests/advapi32/service.c +++ b/rostests/winetests/advapi32/service.c @@ -2169,6 +2169,12 @@ static void test_start_stop(void) goto cleanup; } + if (!winetest_interactive) + { + skip("reactos bug 6646: Skipping service start timeout tests!\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);