Author: mjansen
Date: Thu Dec 22 20:51:38 2016
New Revision: 73477
URL:
http://svn.reactos.org/svn/reactos?rev=73477&view=rev
Log:
[BOOTDATA] Update AHKAppTests.cmd to check all drives for the AHK-Tests. CORE-12597
#resolve
Modified:
trunk/reactos/boot/bootdata/bootcdregtest/AHKAppTests.cmd
Modified: trunk/reactos/boot/bootdata/bootcdregtest/AHKAppTests.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/bootcdregtes…
==============================================================================
--- trunk/reactos/boot/bootdata/bootcdregtest/AHKAppTests.cmd [iso-8859-1] (original)
+++ trunk/reactos/boot/bootdata/bootcdregtest/AHKAppTests.cmd [iso-8859-1] Thu Dec 22
20:51:38 2016
@@ -1,11 +1,14 @@
@ECHO OFF
-if not exist "D:\AHK-Tests" (
+set DRIVE=
+for %%X in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (if exist
%%X:\AHK-Tests set DRIVE=%%X)
+
+if not defined DRIVE (
dbgprint "AHK Application testing suite not present, skipping."
exit /b 0
)
-xcopy /Y /H /E D:\AHK-Tests\*.* C:\ReactOS\bin
+xcopy /Y /H /E %DRIVE%:\AHK-Tests\*.* %SystemRoot%\bin
REM Download Amine's rosautotest from svn
-dwnl
http://svn.reactos.org/amine/rosautotest.exe C:\ReactOS\system32\rosautotest.exe
+dwnl
http://svn.reactos.org/amine/rosautotest.exe %SystemRoot%\system32\rosautotest.exe
dbgprint "....AHK Application testing suite added."