We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a0d71 commit d96ea27Copy full SHA for d96ea27
lldb/test/Shell/SymbolFile/DWARF/ignored_artificial_fields.test
@@ -0,0 +1,17 @@
1
+# UNSUPPORTED: system-darwin, system-windows
2
+
3
+# Make sure the artifical field `vptr.ClassName` from gcc debug info is ignored.
4
+# RUN: %build --compiler=gcc %S/Inputs/debug-types-expressions.cpp -o %t
5
+# RUN: %lldb %t -s %s -o exit | FileCheck %s
6
7
+breakpoint set -n foo
8
+process launch
9
10
+# CHECK: Process {{.*}} stopped
11
12
+frame variable *a
13
+# CHECK-LABEL: frame variable *a
14
+# CHECK: (B) *a = {
15
+# CHECK-NEXT: A = (i = 47)
16
+# CHECK-NEXT: j = 42
17
+# CHECK-NEXT: }
0 commit comments