mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-17 08:57:34 +00:00
de5e9119ce
The test/DebugInfo/dwarfdump-macho-universal.test test added in r243862 uses an input from another test's directory (test/tools/dsymutil/Inputs/fat-test.o) which breaks our test setup. Copying the required test input to the test's Input directory to fix the issue. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243872 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
600 B
Plaintext
18 lines
600 B
Plaintext
Reuse a test input from llvm-dsymutil, it's perfect for what we want to exercise
|
|
RUN: llvm-dwarfdump %S/Inputs/fat-test.o -debug-dump=info | FileCheck %s
|
|
|
|
CHECK: fat-test.o (x86_64): file format Mach-O 64-bit x86-64
|
|
CHECK: DW_TAG_variable
|
|
CHECK-NOT: {{NULL|DW_TAG}}
|
|
CHECK: DW_AT_name {{.*}} "x86_64_var"
|
|
|
|
CHECK: fat-test.o (i386): file format Mach-O 32-bit i386
|
|
CHECK: DW_TAG_variable
|
|
CHECK-NOT: {{NULL|DW_TAG}}
|
|
CHECK: DW_AT_name {{.*}} "i386_var"
|
|
|
|
CHECK: fat-test.o (x86_64h): file format Mach-O 64-bit x86-64
|
|
CHECK: DW_TAG_variable
|
|
CHECK-NOT: {{NULL|DW_TAG}}
|
|
CHECK: DW_AT_name {{.*}} "x86_64h_var"
|