mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 09:19:32 +02:00
19 lines
378 B
Batchfile
19 lines
378 B
Batchfile
@echo off
|
|
rem
|
|
rem Batch file to compile and run ts010100
|
|
rem
|
|
echo Compiling ts010100...
|
|
ppc386 ts010100 >nul
|
|
if errorlevel 1 goto comfailed
|
|
echo compilation of ts010100 : PASSED
|
|
ts010100 >nul
|
|
if errorlevel 0 goto runpassed
|
|
echo execution of ts010100 : FAILED
|
|
goto end
|
|
:runpassed
|
|
echo execution of ts010100 : PASSED
|
|
goto end
|
|
:comfailed
|
|
echo Compilation of ts010100 : FAILED
|
|
:end
|