mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	- Also, add a test for it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174019 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			19 lines
		
	
	
		
			456 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			456 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Check the lit adaption to run under unittest.
 | 
						|
#
 | 
						|
# RUN: python %s %{inputs}/unittest-adaptor 2> %t.err
 | 
						|
# RUN: FileCheck < %t.err %s
 | 
						|
#
 | 
						|
# CHECK: unittest-adaptor :: test-one.txt ... ok
 | 
						|
# CHECK: unittest-adaptor :: test-two.txt ... FAIL
 | 
						|
 | 
						|
import unittest
 | 
						|
import sys
 | 
						|
 | 
						|
import lit
 | 
						|
import lit.discovery
 | 
						|
 | 
						|
input_path = sys.argv[1]
 | 
						|
unittest_suite = lit.discovery.load_test_suite([input_path])
 | 
						|
runner = unittest.TextTestRunner(verbosity=2)
 | 
						|
runner.run(unittest_suite)
 |