mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 19:38:10 +02:00
11 lines
228 B
Batchfile
11 lines
228 B
Batchfile
@echo off
|
|
rem This batch script should compile all tests.
|
|
rem All tests which should run and be ok.
|
|
for %%f in ( ts*.bat ) do command /c %%f
|
|
rem All tests which crash the compiler.
|
|
for %%f in ( tf*.bat ) do command /c %%f
|
|
|
|
|
|
|
|
|
|
|