mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 08:18:23 +02:00
16 lines
268 B
Batchfile
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
|
|
|
|
|
|
|