Author: akhaldi
Date: Sat Dec 21 13:53:05 2013
New Revision: 61317
URL: http://svn.reactos.org/svn/reactos?rev=61317&view=rev
Log:
[CMAKE]
* Support only debug and release configuration types (in the VS solutions).
Modified:
trunk/reactos/cmake/Platform/Windows-MSVC.cmake
Modified: trunk/reactos/cmake/Platform/Windows-MSVC.cmake
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/Platform/Windows-MSV…
==============================================================================
--- trunk/reactos/cmake/Platform/Windows-MSVC.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/Platform/Windows-MSVC.cmake [iso-8859-1] Sat Dec 21 13:53:05 2013
@@ -51,7 +51,7 @@
endif()
if(NOT CMAKE_NO_BUILD_TYPE AND CMAKE_GENERATOR MATCHES "Visual Studio")
set (CMAKE_NO_BUILD_TYPE 1)
- set (CMAKE_CONFIGURATION_TYPES "Debug;Release;MinSizeRel;RelWithDebInfo" CACHE STRING
+ set (CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING
"Semicolon separated list of supported configuration types, only supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything else will be ignored.")
mark_as_advanced(CMAKE_CONFIGURATION_TYPES)
endif()
Author: gadamopoulos
Date: Sat Dec 21 10:44:10 2013
New Revision: 61311
URL: http://svn.reactos.org/svn/reactos?rev=61311&view=rev
Log:
[user32_apitest]
- Arch, don't allow the mouse to create unexpected messages because this will surely cause failures. Also if you move the mouse during the test you will also get these failures
Modified:
trunk/rostests/apitests/user32/DeferWindowPos.c
Modified: trunk/rostests/apitests/user32/DeferWindowPos.c
URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/user32/DeferWind…
==============================================================================
--- trunk/rostests/apitests/user32/DeferWindowPos.c [iso-8859-1] (original)
+++ trunk/rostests/apitests/user32/DeferWindowPos.c [iso-8859-1] Sat Dec 21 10:44:10 2013
@@ -499,6 +499,8 @@
START_TEST(DeferWindowPos)
{
+ SetCursorPos(0,0);
+
RegisterSimpleClass(DWPTestProc, L"ownertest");
hWnd1 = CreateWindowExW(0, L"ownertest", L"abc", 0, 10, 20,
200, 210, NULL, NULL, 0, NULL);