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
3
3
RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=ENUM %s
4
4
RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=ENUM %s
5
5
RUN: 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
6
7
RUN: 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
7
9
RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=CLASS %s
8
10
RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=CLASS %s
9
11
RUN: 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
10
13
RUN: 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
11
15
RUN: 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
12
17
RUN: 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
13
19
14
20
ENUM: Module: {{.*}}
15
21
ENUM: namespace N0 {
Original file line number Diff line number Diff line change 1
1
REQUIRES: 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
6
10
7
11
64BIT-CHECK: Module: {{.*}}
8
12
64BIT-CHECK-DAG: int (*FuncCCallPtr)();
Original file line number Diff line number Diff line change 1
1
REQUIRES: target-windows, lld
2
2
RUN: %build --compiler=clang-cl --output=%t.exe %S/Inputs/VBases.cpp
3
3
RUN: %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
4
5
5
6
CHECK: {
6
7
CHECK: A = (a = '\x01')
You can’t perform that action at this time.
0 commit comments