Author: tfaber
Date: Sun Feb 15 18:20:59 2015
New Revision: 66302
URL:
http://svn.reactos.org/svn/reactos?rev=66302&view=rev
Log:
[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
Modified:
trunk/rostests/winetests/advapi32/service.c
Modified: trunk/rostests/winetests/advapi32/service.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/advapi32/servic…
==============================================================================
--- trunk/rostests/winetests/advapi32/service.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/advapi32/service.c [iso-8859-1] Sun Feb 15 18:20:59 2015
@@ -2266,6 +2266,12 @@
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);