diff options
| author | Zachary Turner <zturner@google.com> | 2019-01-02 18:33:54 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2019-01-02 18:33:54 +0000 |
| commit | 225663308de1cbdd5f3624179ab7f43ce8286bfb (patch) | |
| tree | 873e63675ea53b6047e805a16f19c89da0faee39 /lldb/lit/SymbolFile/PDB/variables-locations.test | |
| parent | d6d29a5812d6231098b20d74bbe11793fe3e7706 (diff) | |
| download | bcm5719-llvm-225663308de1cbdd5f3624179ab7f43ce8286bfb.tar.gz bcm5719-llvm-225663308de1cbdd5f3624179ab7f43ce8286bfb.zip | |
[NativePDB] Implement ParseDeclsForContext.
This is a first step towards getting lldb-test symbols working
with the native plugin. There is a remaining issue, which is
that the plugin expects that ParseDeclsForContext will also
create lldb symbols rather than just the decls, but the native
pdb plugin doesn't currently do this. This will be addressed
in a followup patch.
llvm-svn: 350243
Diffstat (limited to 'lldb/lit/SymbolFile/PDB/variables-locations.test')
| -rw-r--r-- | lldb/lit/SymbolFile/PDB/variables-locations.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/lit/SymbolFile/PDB/variables-locations.test b/lldb/lit/SymbolFile/PDB/variables-locations.test index e3ac63aa9f0..7696dc92cee 100644 --- a/lldb/lit/SymbolFile/PDB/variables-locations.test +++ b/lldb/lit/SymbolFile/PDB/variables-locations.test @@ -1,6 +1,6 @@ REQUIRES: system-windows, lld RUN: %build --compiler=clang-cl --output=%t.exe %S/Inputs/VariablesLocationsTest.cpp -RUN: %lldb -b -s %S/Inputs/VariablesLocationsTest.script -- %t.exe | FileCheck %s +RUN: env LLDB_USE_NATIVE_PDB_READER=1 %lldb -b -s %S/Inputs/VariablesLocationsTest.script -- %t.exe | FileCheck %s CHECK: g_var = 2222 |

