[rtsan] Add fork/execve interceptors (#117198)
[llvm-project.git] / llvm / test / tools / llvm-symbolizer / pdb / pdb.test
blob46a1ae9814e6dfde2761caffdd1e415df6eeb926
1 RUN: echo 0x401380 > %t.input
2 RUN: echo 0x401390 >> %t.input
3 RUN: echo 0x4013A0 >> %t.input
4 RUN: echo 0x4013C0 >> %t.input
5 RUN: echo 0x4013D0 >> %t.input
6 RUN: echo 0x4013E0 >> %t.input
7 RUN: echo 0x4013F0 >> %t.input
8 RUN: echo 0x401420 >> %t.input
9 RUN: llvm-symbolizer --obj="%p/Inputs/test.exe" < %t.input \
10 RUN:    | FileCheck %s
11 RUN: llvm-symbolizer --obj="%p/Inputs/test.exe" --no-demangle < %t.input \
12 RUN:    | FileCheck %s --check-prefix=CHECK-NO-DEMANGLE
14 ; Check that -dia works
15 RUN: llvm-symbolizer --dia --obj="%p/Inputs/test.exe" < %t.input \
16 RUN:    | FileCheck %s
17 RUN: llvm-symbolizer --dia --obj="%p/Inputs/test.exe" --no-demangle < %t.input \
18 RUN:    | FileCheck %s --check-prefix=CHECK-NO-DEMANGLE
21 Subtract ImageBase from all the offsets and run the test again with
22 --relative-address.
24 RUN: %python -c 'import sys;print("\n".join([hex(int(x, 16) - 0x400000) for x in sys.stdin]))' < %t.input \
25 RUN:    | llvm-symbolizer --obj="%p/Inputs/test.exe" --no-demangle --relative-address \
26 RUN:    | FileCheck %s --check-prefix=CHECK-NO-DEMANGLE
28 CHECK: foo(void)
29 CHECK-NEXT: test.cpp:10
30 CHECK: {{^private_symbol$}}
31 CHECK-NEXT: test.cpp:13:0
32 CHECK: {{^main}}
33 CHECK-NEXT: test.cpp:16:0
34 CHECK: {{^foo_cdecl$}}
35 CHECK: {{^foo_stdcall$}}
36 CHECK: {{^foo_fastcall$}}
37 CHECK: {{^foo_vectorcall$}}
38 CHECK: NS::Foo::bar(void)
39 CHECK-NEXT: test.cpp:6:0
41 CHECK-NO-DEMANGLE: ?foo@@YAXXZ
42 CHECK-NO-DEMANGLE-NEXT: test.cpp:10
43 CHECK-NO-DEMANGLE: private_symbol
44 CHECK-NO-DEMANGLE-NEXT: test.cpp:13
45 CHECK-NO-DEMANGLE: _main
46 CHECK-NO-DEMANGLE-NEXT: test.cpp:16
47 CHECK-NO-DEMANGLE: _foo_cdecl
48 CHECK-NO-DEMANGLE: _foo_stdcall@0
49 CHECK-NO-DEMANGLE: @foo_fastcall@0
50 CHECK-NO-DEMANGLE: foo_vectorcall@@0
51 CHECK-NO-DEMANGLE: ?bar@Foo@NS@@QAEXXZ
52 CHECK-NO-DEMANGLE-NEXT: test.cpp:6