Likewise, add info is onetest2.bat is run

This commit is contained in:
Geoff McLane 2015-05-14 14:47:02 +02:00
parent 83fe261d58
commit 59f25fe32a

View file

@ -10,6 +10,8 @@ REM
@if NOT EXIST %TIDYOUT%\nul goto Err4
@if NOT EXIST input\nul goto Err5
@if NOT EXIST testbase\nul goto Err8
@if "%1x" == "x" goto Err9
@if "%2x" == "x" goto Err10
set TESTNO=%1
set EXPECTED=%2
@ -137,4 +139,17 @@ if exist %TIDYFILE% del %TIDYFILE%
@pause
@goto done
:Err9
@echo.
@echo ERROR: No input test number given as 1st parameter!
:Err10
@echo ERROR: No expected exit value given as 2nd parameter!
@echo.
@echo Essentially this bat is intended to be used by alltest2.bat,
@echo which in turn is used by alltestc.bat, so try alltestc.bat.
@echo It is not intended that this batch file be run in isolation,
@echo even when TIDY and TIDYOUT have been set in the environent.
@echo.
@goto done
:done