Author: gadamopoulos
Date: Tue Jan 17 19:13:12 2017
New Revision: 73569
URL: http://svn.reactos.org/svn/reactos?rev=73569&view=rev
Log:
[regtest.cmd] -RENAME parameter in add_rostests_file doesn't have any effect on the name of the installed file so rename sine files manually before starting tests.
Modified:
trunk/reactos/boot/bootdata/bootcdregtest/regtest.cmd
Modified: trunk/reactos/boot/bootdata/bootcdregtest/regtest.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/bootcdregtes…
==============================================================================
--- trunk/reactos/boot/bootdata/bootcdregtest/regtest.cmd [iso-8859-1] (original)
+++ trunk/reactos/boot/bootdata/bootcdregtest/regtest.cmd [iso-8859-1] Tue Jan 17 19:13:12 2017
@@ -2,6 +2,8 @@
set WINETEST_DEBUG=0
set WINETEST_PLATFORM=reactos
+move C:\ReactOS\bin\redirtest1.dll C:\ReactOS\bin\kernel32test_versioned.dll
+move C:\ReactOS\bin\testdata\redirtest2.dll C:\ReactOS\bin\testdata\kernel32test_versioned.dll
if exist "C:\ReactOS\bin\AHKAppTests.cmd" (
dbgprint "Preparing AHK Application testing suite."
call C:\ReactOS\bin\AHKAppTests.cmd
Author: hbelusca
Date: Mon Jan 16 22:34:22 2017
New Revision: 73564
URL: http://svn.reactos.org/svn/reactos?rev=73564&view=rev
Log:
[SHLWAPI]: Follow-up on r73527 and r73529: Use WINVER conditional to separate old-Win2k3 and new-Vista+ behaviours of PathIsUNCA/W.
CORE-12653
Modified:
trunk/reactos/dll/win32/shlwapi/path.c
Modified: trunk/reactos/dll/win32/shlwapi/path.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shlwapi/path.c?r…
==============================================================================
--- trunk/reactos/dll/win32/shlwapi/path.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shlwapi/path.c [iso-8859-1] Mon Jan 16 22:34:22 2017
@@ -2202,7 +2202,7 @@
* considered UNC, while on Windows Vista+ this is not the case anymore.
*/
// #ifdef __REACTOS__
-#if 0
+#if (WINVER >= _WIN32_WINNT_VISTA)
if (lpszPath && (lpszPath[0]=='\\') && (lpszPath[1]=='\\') && (lpszPath[2]!='?'))
#else
if (lpszPath && (lpszPath[0]=='\\') && (lpszPath[1]=='\\'))
@@ -2225,7 +2225,7 @@
* considered UNC, while on Windows Vista+ this is not the case anymore.
*/
// #ifdef __REACTOS__
-#if 0
+#if (WINVER >= _WIN32_WINNT_VISTA)
if (lpszPath && (lpszPath[0]=='\\') && (lpszPath[1]=='\\') && (lpszPath[2]!='?'))
#else
if (lpszPath && (lpszPath[0]=='\\') && (lpszPath[1]=='\\'))