mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
a090f05f4d
This is the third of a series of patches simplifying llvm-symbolizer tests. See r352752 and r352753 for the previous two. This patch splits out a number of distinct test cases from llvm-symbolizer.test into separate tests, and simplifies them in various ways including: 1) using --obj/positional arguments for the input file and addresses instead of stdin, 2) using runtime-generated inputs rather than a pre-canned binary, and 3) testing more specifically (i.e. checking only what is interesting to the behaviour changed in the original commit for that test case). This patch also removes the test case for using --obj. The tools/llvm-symbolizer/basic.s test already tests this case. Finally, this patch adds a simple test case to the demangle switch test case to show that demangling happens by default. See https://bugs.llvm.org/show_bug.cgi?id=40070#c1 for the motivation. Reviewed by: dblaikie Differential Revision: https://reviews.llvm.org/D57446 llvm-svn: 352754
25 lines
475 B
ArmAsm
25 lines
475 B
ArmAsm
# REQUIRES: x86-registered-target
|
|
|
|
# RUN: llvm-mc --filetype=obj --triple=x86_64-pc-linux %s -o %t.o -g
|
|
|
|
# RUN: llvm-symbolizer --obj=%t.o 0 1 2 | FileCheck %s
|
|
|
|
# CHECK: f()
|
|
# CHECK-NEXT: symbolize-demangling.s:20
|
|
# CHECK-EMPTY:
|
|
# CHECK-NEXT: {{^g$}}
|
|
# CHECK-NEXT: symbolize-demangling.s:22
|
|
# CHECK-EMPTY:
|
|
# CHECK-NEXT: {{^baz$}}
|
|
# CHECK-NEXT: symbolize-demangling.s:24
|
|
|
|
.type _Z1fv,@function
|
|
.type g,@function
|
|
.type baz,@function
|
|
_Z1fv:
|
|
nop
|
|
g:
|
|
nop
|
|
baz:
|
|
nop
|