mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200370 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			16 lines
		
	
	
		
			428 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			428 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
Test that llvm-nm returns an error because of the unknown file type, but
 | 
						|
keeps processing subsequent files.
 | 
						|
 | 
						|
RUN: touch %t
 | 
						|
RUN: not llvm-nm %p/Inputs/trivial-object-test.elf-i386 %t \
 | 
						|
RUN:             %p/Inputs/trivial-object-test.elf-i386 | \
 | 
						|
RUN: FileCheck %s
 | 
						|
 | 
						|
CHECK:          U SomeOtherFunction
 | 
						|
CHECK: 00000000 T main
 | 
						|
CHECK:          U puts
 | 
						|
 | 
						|
CHECK:          U SomeOtherFunction
 | 
						|
CHECK: 00000000 T main
 | 
						|
CHECK:          U puts
 |