File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed
lldb/test/Shell/SymbolFile/PDB Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,19 @@ RUN: %build --compiler=msvc --nodefaultlib --output=%t.exe %S/Inputs/AstRestoreT
33RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=ENUM %s
44RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=ENUM %s
55RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=GLOBAL %s
6+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=GLOBAL %s
67RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=BASE %s
8+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=BASE %s
79RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=CLASS %s
810RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=CLASS %s
911RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=INNER %s
12+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=INNER %s
1013RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=TEMPLATE %s
14+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=TEMPLATE %s
1115RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=FOO %s
16+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=FOO %s
1217RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=MAIN %s
18+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=MAIN %s
1319
1420ENUM: Module: {{.*}}
1521ENUM: namespace N0 {
Original file line number Diff line number Diff line change 11REQUIRES: system-windows, lld, (target-x86 || target-x86_64)
2- RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp \
3- RUN: && lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix 32BIT-CHECK %s
4- RUN: %build --compiler=clang-cl --arch=64 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp \
5- RUN: && lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix 64BIT-CHECK %s
2+
3+ RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%t-32.exe %S/Inputs/CallingConventionsTest.cpp
4+ RUN: lldb-test symbols -dump-ast %t-32.exe | FileCheck --check-prefix 32BIT-CHECK %s
5+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t-32.exe | FileCheck --check-prefix 32BIT-CHECK %s
6+
7+ RUN: %build --compiler=clang-cl --arch=64 --nodefaultlib --output=%t-64.exe %S/Inputs/CallingConventionsTest.cpp
8+ RUN: lldb-test symbols -dump-ast %t-64.exe | FileCheck --check-prefix 64BIT-CHECK %s
9+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t-64.exe | FileCheck --check-prefix 64BIT-CHECK %s
610
71164BIT-CHECK: Module: {{.*}}
81264BIT-CHECK-DAG: int (*FuncCCallPtr)();
Original file line number Diff line number Diff line change 11REQUIRES: target-windows, lld
22RUN: %build --compiler=clang-cl --output=%t.exe %S/Inputs/VBases.cpp
33RUN: %lldb -b -s %S/Inputs/VBases.script -- %t.exe | FileCheck %s
4+ RUN: env LLDB_USE_NATIVE_PDB_READER=1 %lldb -b -s %S/Inputs/VBases.script -- %t.exe | FileCheck %s
45
56CHECK: {
67CHECK: A = (a = '\x01')
You can’t perform that action at this time.
0 commit comments