mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 07:59:34 +01: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
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
   |