fpc/tests/template2.bat
1998-03-25 11:33:02 +00:00

16 lines
268 B
Batchfile

@echo off
rem
rem Batch file to compile NAME. If compilation fails, the test passed.
rem
echo Compiling NAME...
ppc386 NAME >nul
if errorlevel 1 goto compassed
echo Error compilation of NAME : FAILED
goto end
:compassed
echo Error compilation of NAME : PASSED
:end