Revert "[lldb] Remove the newly-added test in 66acd1e4dc1080015fe6b234226f1d30d6577f04"
[llvm-project.git] / lldb / test / Shell / SymbolFile / DWARF / ignored_artificial_fields.test
blobe7d3bc4b796224a45417e913a378c8fb31178b9a
1 # UNSUPPORTED: system-darwin, system-windows
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
7 breakpoint set -n foo
8 process launch
10 # CHECK: Process {{.*}} stopped
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: }