Author: tfaber
Date: Fri Sep 16 09:33:54 2016
New Revision: 72696

URL: http://svn.reactos.org/svn/reactos?rev=72696&view=rev
Log:
[NTDLL_WINETEST]
- Skip exception test on WHS-Testbot... because problems...
ROSTESTS-240

Modified:
    trunk/rostests/winetests/ntdll/exception.c

Modified: trunk/rostests/winetests/ntdll/exception.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/ntdll/exception.c?rev=72696&r1=72695&r2=72696&view=diff
==============================================================================
--- trunk/rostests/winetests/ntdll/exception.c  [iso-8859-1] (original)
+++ trunk/rostests/winetests/ntdll/exception.c  [iso-8859-1] Fri Sep 16 
09:33:54 2016
@@ -1893,7 +1893,14 @@
 START_TEST(exception)
 {
     HMODULE hntdll = GetModuleHandleA("ntdll.dll");
-
+#ifdef __REACTOS__
+    if (!winetest_interactive &&
+        !strcmp(winetest_platform, "windows"))
+    {
+        skip("ROSTESTS-240: Skipping ntdll_winetest:exception because it hangs 
on WHS-Testbot. Set winetest_interactive to run it anyway.\n");
+        return;
+    }
+#endif
     code_mem = VirtualAlloc(NULL, 65536, MEM_RESERVE | MEM_COMMIT, 
PAGE_EXECUTE_READWRITE);
     if(!code_mem) {
         trace("VirtualAlloc failed\n");


Reply via email to