mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86654 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			24 lines
		
	
	
		
			683 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			683 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- Python -*-
 | |
| 
 | |
| # Configuration file for the 'lit' test runner.
 | |
| 
 | |
| # name: The name of this test suite.
 | |
| config.name = 'Examples'
 | |
| 
 | |
| # suffixes: A list of file extensions to treat as test files.
 | |
| config.suffixes = ['.c', '.cpp', '.m', '.mm', '.ll']
 | |
| 
 | |
| # testFormat: The test format to use to interpret tests.
 | |
| config.test_format = lit.formats.ShTest()
 | |
| 
 | |
| # test_source_root: The path where tests are located (default is the test suite
 | |
| # root).
 | |
| config.test_source_root = None
 | |
| 
 | |
| # test_exec_root: The path where tests are located (default is the test suite
 | |
| # root).
 | |
| config.test_exec_root = None
 | |
| 
 | |
| # target_triple: Used by ShTest and TclTest formats for XFAIL checks.
 | |
| config.target_triple = 'foo'
 |