Author: tfaber
Date: Sat May  7 19:47:38 2011
New Revision: 51628

URL: http://svn.reactos.org/svn/reactos?rev=51628&view=rev
Log:
[KMTestSuite]
Update to HEAD

Added:
    branches/GSoC_2011/KMTestSuite/apitests/kernel32/   (props changed)
      - copied from r51625, trunk/rostests/apitests/kernel32/
    branches/GSoC_2011/KMTestSuite/apitests/kernel32/CMakeLists.txt
      - copied unchanged from r51625, 
trunk/rostests/apitests/kernel32/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/apitests/kernel32/GetDriveType.c
      - copied unchanged from r51625, 
trunk/rostests/apitests/kernel32/GetDriveType.c
    branches/GSoC_2011/KMTestSuite/apitests/kernel32/kernel32_apitest.rbuild
      - copied unchanged from r51625, 
trunk/rostests/apitests/kernel32/kernel32_apitest.rbuild
    branches/GSoC_2011/KMTestSuite/apitests/kernel32/testlist.c
      - copied unchanged from r51625, 
trunk/rostests/apitests/kernel32/testlist.c
    branches/GSoC_2011/KMTestSuite/apitests/user32/GetKeyState.c
      - copied unchanged from r51625, 
trunk/rostests/apitests/user32/GetKeyState.c
    branches/GSoC_2011/KMTestSuite/apitests/user32/SetCursorPos.c
      - copied unchanged from r51625, 
trunk/rostests/apitests/user32/SetCursorPos.c
    branches/GSoC_2011/KMTestSuite/winetests/kernel32/dosdev.c
      - copied unchanged from r51625, trunk/rostests/winetests/kernel32/dosdev.c
Modified:
    branches/GSoC_2011/KMTestSuite/apitests/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/apitests/directory.rbuild
    branches/GSoC_2011/KMTestSuite/apitests/user32/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/apitests/user32/testlist.c
    branches/GSoC_2011/KMTestSuite/apitests/user32/user32_apitest.rbuild
    
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2k3sp2/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2ksp4/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_ros/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_vista/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_xpsp2/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/apitests/w32knapi/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/dibtests/bltrop/bltrop.rbuild
    branches/GSoC_2011/KMTestSuite/dibtests/vbltest/vbltest.rbuild
    branches/GSoC_2011/KMTestSuite/drivers/kmtest/ntos_fsrtl.c
    branches/GSoC_2011/KMTestSuite/dxtest/win32kdxtest/win32kdxtest.rbuild
    branches/GSoC_2011/KMTestSuite/win32/smss/movefile/movefile.rbuild
    branches/GSoC_2011/KMTestSuite/win32/user32/drawcaption/drawcaption.rbuild
    branches/GSoC_2011/KMTestSuite/winetests/comctl32/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/winetests/cryptui/cryptui.rbuild
    branches/GSoC_2011/KMTestSuite/winetests/itss/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/winetests/jscript/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/winetests/kernel32/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/winetests/kernel32/kernel32.rbuild
    branches/GSoC_2011/KMTestSuite/winetests/kernel32/testlist.c
    branches/GSoC_2011/KMTestSuite/winetests/mshtml/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/winetests/user32/CMakeLists.txt
    branches/GSoC_2011/KMTestSuite/winetests/user32/msg.c
    branches/GSoC_2011/KMTestSuite/winetests/user32/win.c

Modified: branches/GSoC_2011/KMTestSuite/apitests/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/apitests/CMakeLists.txt [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/apitests/CMakeLists.txt [iso-8859-1] Sat May 
 7 19:47:38 2011
@@ -5,6 +5,7 @@
 add_subdirectory(gdi32)
 add_subdirectory(ntdll)
 add_subdirectory(user32)
+add_subdirectory(kernel32)
 
 if(NOT MSVC)
 if(ARCH MATCHES i386)

Modified: branches/GSoC_2011/KMTestSuite/apitests/directory.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/directory.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/apitests/directory.rbuild [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/apitests/directory.rbuild [iso-8859-1] Sat 
May  7 19:47:38 2011
@@ -21,6 +21,10 @@
        <directory name="user32">
                <xi:include href="user32/user32_apitest.rbuild" />
        </directory>
+       
+       <directory name="kernel32">
+               <xi:include href="kernel32/kernel32_apitest.rbuild" />
+       </directory>
 
        <if property="ARCH" value="i386">
                <directory name="w32kdll">

Propchange: branches/GSoC_2011/KMTestSuite/apitests/kernel32/
------------------------------------------------------------------------------
--- bugtraq:logregex (added)
+++ bugtraq:logregex Sat May  7 19:47:38 2011
@@ -1,0 +1,2 @@
+([Ii]ssue|[Bb]ug)s? #?(\d+)(,? ?#?(\d+))*(,? ?(and |or )?#?(\d+))?
+(\d+)

Propchange: branches/GSoC_2011/KMTestSuite/apitests/kernel32/
------------------------------------------------------------------------------
    bugtraq:message = See issue #%BUGID% for more details.

Propchange: branches/GSoC_2011/KMTestSuite/apitests/kernel32/
------------------------------------------------------------------------------
    bugtraq:url = http://www.reactos.org/bugzilla/show_bug.cgi?id=%BUGID%

Propchange: branches/GSoC_2011/KMTestSuite/apitests/kernel32/
------------------------------------------------------------------------------
    tsvn:logminsize = 10

Modified: branches/GSoC_2011/KMTestSuite/apitests/user32/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/user32/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/apitests/user32/CMakeLists.txt [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/apitests/user32/CMakeLists.txt [iso-8859-1] 
Sat May  7 19:47:38 2011
@@ -1,15 +1,19 @@
 
 add_definitions(-D_DLL -D__USE_CRTIMP)
 
+set_rc_compiler()
+
 list(APPEND SOURCE
+    DeferWindowPos.c
+    GetIconInfo.c
+    GetKeyState.c
+    GetPeekMessage.c
+    GetSystemMetrics.c
     InitializeLpkHooks.c
     RealGetWindowClass.c
     ScrollDC.c
     ScrollWindowEx.c
-    GetSystemMetrics.c
-    GetIconInfo.c
-    GetPeekMessage.c
-    DeferWindowPos.c
+    SetCursorPos.c
     testlist.c
     user32_apitest.rc)
 

Modified: branches/GSoC_2011/KMTestSuite/apitests/user32/testlist.c
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/user32/testlist.c?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/apitests/user32/testlist.c [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/apitests/user32/testlist.c [iso-8859-1] Sat 
May  7 19:47:38 2011
@@ -13,6 +13,8 @@
 extern void func_GetIconInfo(void);
 extern void func_GetPeekMessage(void);
 extern void func_DeferWindowPos(void);
+extern void func_GetKeyState(void);
+extern void func_SetCursorPos(void);
 
 const struct test winetest_testlist[] =
 {
@@ -24,7 +26,8 @@
     { "GetIconInfo", func_GetIconInfo },
     { "GetPeekMessage", func_GetPeekMessage },
     { "DeferWindowPos", func_DeferWindowPos },
-
+    { "GetKeyState", func_GetKeyState },
+    { "SetCursorPos", func_SetCursorPos },
     { 0, 0 }
 };
 

Modified: branches/GSoC_2011/KMTestSuite/apitests/user32/user32_apitest.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/user32/user32_apitest.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/apitests/user32/user32_apitest.rbuild 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/apitests/user32/user32_apitest.rbuild 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -10,6 +10,7 @@
        <file>testlist.c</file>
        <file>user32_apitest.rc</file>
 
+       <file>GetKeyState.c</file>
        <file>InitializeLpkHooks.c</file>
        <file>RealGetWindowClass.c</file>
        <file>ScrollDC.c</file>
@@ -18,6 +19,7 @@
        <file>GetIconInfo.c</file>
        <file>GetPeekMessage.c</file>
        <file>DeferWindowPos.c</file>
+       <file>SetCursorPos.c</file>
 
 </module>
 </group>

Modified: 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2k3sp2/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2k3sp2/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2k3sp2/CMakeLists.txt 
[iso-8859-1] (original)
+++ 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2k3sp2/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -2,5 +2,5 @@
 add_library(w32kdll_2k3sp2 SHARED main.c w32kdll_2k3sp2.S)
 set_entrypoint(w32kdll_2k3sp2 0)
 target_link_libraries(w32kdll_2k3sp2 
${CMAKE_CURRENT_SOURCE_DIR}/w32kdll_2k3sp2.def)
-add_dependencies(w32kdll_2k3sp2 psdk buildno_header)
+add_dependencies(w32kdll_2k3sp2 psdk )
 add_importlib_target(w32kdll_2k3sp2.def)

Modified: 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2ksp4/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2ksp4/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2ksp4/CMakeLists.txt 
[iso-8859-1] (original)
+++ 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_2ksp4/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -2,5 +2,5 @@
 add_library(w32kdll_2ksp4 SHARED main.c w32kdll_2ksp4.S)
 set_entrypoint(w32kdll_2ksp4 0)
 target_link_libraries(w32kdll_2ksp4 
${CMAKE_CURRENT_SOURCE_DIR}/w32kdll_2ksp4.def)
-add_dependencies(w32kdll_2ksp4 psdk buildno_header)
+add_dependencies(w32kdll_2ksp4 psdk )
 add_importlib_target(w32kdll_2ksp4.def)

Modified: 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_ros/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_ros/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_ros/CMakeLists.txt 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_ros/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -7,5 +7,5 @@
     ${CMAKE_CURRENT_SOURCE_DIR}/w32kdll_ros.def
     win32ksys)
 
-add_dependencies(w32kdll psdk buildno_header)
+add_dependencies(w32kdll psdk )
 add_importlib_target(w32kdll_ros.def)

Modified: 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_vista/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_vista/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_vista/CMakeLists.txt 
[iso-8859-1] (original)
+++ 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_vista/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -2,5 +2,5 @@
 add_library(w32kdll_vista SHARED main.c w32kdll_vista.S)
 set_entrypoint(w32kdll_vista 0)
 target_link_libraries(w32kdll_vista 
${CMAKE_CURRENT_SOURCE_DIR}/w32kdll_vista.def)
-add_dependencies(w32kdll_vista psdk buildno_header)
+add_dependencies(w32kdll_vista psdk )
 add_importlib_target(w32kdll_vista.def)

Modified: 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_xpsp2/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_xpsp2/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_xpsp2/CMakeLists.txt 
[iso-8859-1] (original)
+++ 
branches/GSoC_2011/KMTestSuite/apitests/w32kdll/w32kdll_xpsp2/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -2,5 +2,5 @@
 add_library(w32kdll_xpsp2 SHARED main.c w32kdll_xpsp2.S)
 set_entrypoint(w32kdll_xpsp2 0)
 target_link_libraries(w32kdll_xpsp2 
${CMAKE_CURRENT_SOURCE_DIR}/w32kdll_xpsp2.def)
-add_dependencies(w32kdll_xpsp2 psdk buildno_header)
+add_dependencies(w32kdll_xpsp2 psdk )
 add_importlib_target(w32kdll_xpsp2.def)

Modified: branches/GSoC_2011/KMTestSuite/apitests/w32knapi/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/apitests/w32knapi/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/apitests/w32knapi/CMakeLists.txt 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/apitests/w32knapi/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -1,5 +1,7 @@
 
 add_definitions(-D_DLL -D__USE_CRTIMP)
+
+set_rc_compiler()
 
 list(APPEND SOURCE
     osver.c

Modified: branches/GSoC_2011/KMTestSuite/dibtests/bltrop/bltrop.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/dibtests/bltrop/bltrop.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/dibtests/bltrop/bltrop.rbuild [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/dibtests/bltrop/bltrop.rbuild [iso-8859-1] 
Sat May  7 19:47:38 2011
@@ -4,3 +4,4 @@
        <library>user32</library>
        <file>bltrop.c</file>
        <file>bltrop.rc</file>
+</module>

Modified: branches/GSoC_2011/KMTestSuite/dibtests/vbltest/vbltest.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/dibtests/vbltest/vbltest.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/dibtests/vbltest/vbltest.rbuild [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/dibtests/vbltest/vbltest.rbuild [iso-8859-1] 
Sat May  7 19:47:38 2011
@@ -4,3 +4,4 @@
        <library>gdi32</library>
        <file>vbltest.c</file>
        <file>vbltest.rc</file>
+</module>

Modified: branches/GSoC_2011/KMTestSuite/drivers/kmtest/ntos_fsrtl.c
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/drivers/kmtest/ntos_fsrtl.c?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/drivers/kmtest/ntos_fsrtl.c [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/drivers/kmtest/ntos_fsrtl.c [iso-8859-1] Sat 
May  7 19:47:38 2011
@@ -334,6 +334,8 @@
 VOID
 NtoskrnlFsRtlTest(HANDLE KeyHandle)
 {
+    StartTest();
+
     FsRtlIsNameInExpressionTest();
     FsRtlIsDbcsInExpressionTest();
 

Modified: branches/GSoC_2011/KMTestSuite/dxtest/win32kdxtest/win32kdxtest.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/dxtest/win32kdxtest/win32kdxtest.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/dxtest/win32kdxtest/win32kdxtest.rbuild 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/dxtest/win32kdxtest/win32kdxtest.rbuild 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -11,3 +11,4 @@
        <file>NtGdiDdWaitForVerticalBlank.c</file>
        <file>NtGdiDdCanCreateSurface.c</file>
        <file>dump.c</file>
+</module>

Modified: branches/GSoC_2011/KMTestSuite/win32/smss/movefile/movefile.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/win32/smss/movefile/movefile.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/win32/smss/movefile/movefile.rbuild 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/win32/smss/movefile/movefile.rbuild 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -4,3 +4,4 @@
        <library>user32</library>
        <file>movefile.cpp</file>
        <file>movefile.rc</file>
+</module>

Modified: 
branches/GSoC_2011/KMTestSuite/win32/user32/drawcaption/drawcaption.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/win32/user32/drawcaption/drawcaption.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/win32/user32/drawcaption/drawcaption.rbuild 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/win32/user32/drawcaption/drawcaption.rbuild 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -16,3 +16,4 @@
        <file>capicon.c</file>
        <file>capicon.rc</file>
 </module>
+</group>

Modified: branches/GSoC_2011/KMTestSuite/winetests/comctl32/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/comctl32/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/comctl32/CMakeLists.txt 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/winetests/comctl32/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -8,6 +8,8 @@
 
 remove_definitions(-D_WIN32_IE=0x600)
 add_definitions(-D_WIN32_IE=0x500)
+
+set_rc_compiler()
 
 list(APPEND SOURCE
     comboex.c

Modified: branches/GSoC_2011/KMTestSuite/winetests/cryptui/cryptui.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/cryptui/cryptui.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/cryptui/cryptui.rbuild 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/winetests/cryptui/cryptui.rbuild 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -8,3 +8,4 @@
        <library>crypt32</library>
        <library>user32</library>
        <library>ntdll</library>
+</module>

Modified: branches/GSoC_2011/KMTestSuite/winetests/itss/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/itss/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/itss/CMakeLists.txt [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/winetests/itss/CMakeLists.txt [iso-8859-1] 
Sat May  7 19:47:38 2011
@@ -2,6 +2,8 @@
 add_definitions(
     -D__ROS_LONG64__
     -D_DLL -D__USE_CRTIMP)
+
+set_rc_compiler()
 
 add_executable(itss_winetest protocol.c testlist.c rsrc.rc)
 target_link_libraries(itss_winetest wine)

Modified: branches/GSoC_2011/KMTestSuite/winetests/jscript/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/jscript/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/jscript/CMakeLists.txt 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/winetests/jscript/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -2,6 +2,8 @@
 add_definitions(
     -D__ROS_LONG64__
     -D_DLL -D__USE_CRTIMP)
+
+set_rc_compiler()
 
 list(APPEND SOURCE
     activex.c

Modified: branches/GSoC_2011/KMTestSuite/winetests/kernel32/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/kernel32/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/kernel32/CMakeLists.txt 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/winetests/kernel32/CMakeLists.txt 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -2,6 +2,8 @@
 add_definitions(
     -D__ROS_LONG64__
     -D_DLL -D__USE_CRTIMP)
+
+set_rc_compiler()
 
 list(APPEND SOURCE
     actctx.c
@@ -38,6 +40,7 @@
     version.c
     virtual.c
     volume.c
+    dosdev.c
     testlist.c
     resource.rc)
 

Modified: branches/GSoC_2011/KMTestSuite/winetests/kernel32/kernel32.rbuild
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/kernel32/kernel32.rbuild?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/kernel32/kernel32.rbuild 
[iso-8859-1] (original)
+++ branches/GSoC_2011/KMTestSuite/winetests/kernel32/kernel32.rbuild 
[iso-8859-1] Sat May  7 19:47:38 2011
@@ -40,6 +40,7 @@
        <file>version.c</file>
        <file>virtual.c</file>
        <file>volume.c</file>
+       <file>dosdev.c</file>
        <file>testlist.c</file>
        <file>resource.rc</file>
 </module>

Modified: branches/GSoC_2011/KMTestSuite/winetests/kernel32/testlist.c
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/kernel32/testlist.c?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/kernel32/testlist.c [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/winetests/kernel32/testlist.c [iso-8859-1] 
Sat May  7 19:47:38 2011
@@ -42,6 +42,7 @@
 extern void func_virtual(void);
 extern void func_version(void);
 extern void func_volume(void);
+extern void func_dosdev(void);
 
 const struct test winetest_testlist[] =
 {
@@ -78,6 +79,7 @@
     { "virtual", func_virtual },
     { "version", func_version },
     { "volume", func_volume },
+    { "dosdev", func_dosdev },
     { 0, 0 }
 };
 

Modified: branches/GSoC_2011/KMTestSuite/winetests/mshtml/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/mshtml/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/mshtml/CMakeLists.txt [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/winetests/mshtml/CMakeLists.txt [iso-8859-1] 
Sat May  7 19:47:38 2011
@@ -1,3 +1,5 @@
+
+set_rc_compiler()
 
 add_definitions(
     -D__ROS_LONG64__

Modified: branches/GSoC_2011/KMTestSuite/winetests/user32/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/user32/CMakeLists.txt?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/user32/CMakeLists.txt [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/winetests/user32/CMakeLists.txt [iso-8859-1] 
Sat May  7 19:47:38 2011
@@ -2,6 +2,8 @@
 add_definitions(
     -D__ROS_LONG64__
     -D_DLL -D__USE_CRTIMP)
+
+set_rc_compiler()
 
 list(APPEND SOURCE
     broadcast.c

Modified: branches/GSoC_2011/KMTestSuite/winetests/user32/msg.c
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/user32/msg.c?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/user32/msg.c [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/winetests/user32/msg.c [iso-8859-1] Sat May  
7 19:47:38 2011
@@ -12572,10 +12572,7 @@
     test_paint_messages();
     test_interthread_messages();
     test_message_conversion();
-    if(!winetest_interactive)
-        skip("skipping test_accelerators, that hangs on reactos\n");
-    else
-        test_accelerators();
+    test_accelerators();
     test_timers();
     test_timers_no_wnd();
     if (hCBT_hook) test_set_hook();
@@ -12596,10 +12593,7 @@
     test_dialog_messages();
     test_nullCallback();
     test_dbcs_wm_char();
-    if(!winetest_interactive)
-        skip("skipping test_menu_messages, that hangs on reactos\n");
-    else
-        test_menu_messages();
+    test_menu_messages();
     test_paintingloop();
     test_defwinproc();
     test_clipboard_viewers();

Modified: branches/GSoC_2011/KMTestSuite/winetests/user32/win.c
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/KMTestSuite/winetests/user32/win.c?rev=51628&r1=51627&r2=51628&view=diff
==============================================================================
--- branches/GSoC_2011/KMTestSuite/winetests/user32/win.c [iso-8859-1] 
(original)
+++ branches/GSoC_2011/KMTestSuite/winetests/user32/win.c [iso-8859-1] Sat May  
7 19:47:38 2011
@@ -6058,11 +6058,7 @@
     test_capture_1();
     test_capture_2();
     test_capture_3(hwndMain, hwndMain2);
-
-    if(!winetest_interactive)
-        skip("skipping test_capture_4, that hangs on reactos\n");
-    else
-        test_capture_4();
+    test_capture_4();
 
     test_CreateWindow();
     test_parent_owner();


Reply via email to