diff options
Diffstat (limited to 'lldb/lit/SymbolFile/PDB/variables.test')
-rw-r--r-- | lldb/lit/SymbolFile/PDB/variables.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/lit/SymbolFile/PDB/variables.test b/lldb/lit/SymbolFile/PDB/variables.test index 57f985d899e..477154a6602 100644 --- a/lldb/lit/SymbolFile/PDB/variables.test +++ b/lldb/lit/SymbolFile/PDB/variables.test @@ -1,6 +1,6 @@ REQUIRES: system-windows, msvc -RUN: %clang_cl -m64 /Z7 /c /GS- %S/Inputs/VariablesTest.cpp /o %T/VariablesTest.cpp.obj -RUN: %msvc_link %T/VariablesTest.cpp.obj /DEBUG /nodefaultlib /ENTRY:main /OUT:%T/VariablesTest.cpp.exe +RUN: %build --compiler=clang-cl --mode=compile --arch=64 --nodefaultlib --output=%T/VariablesTest.cpp.obj %S/Inputs/VariablesTest.cpp +RUN: %build --compiler=msvc --mode=link --arch=64 --nodefaultlib --output=%T/VariablesTest.cpp.exe %T/VariablesTest.cpp.obj RUN: lldb-test symbols %T/VariablesTest.cpp.exe | FileCheck %s CHECK: Module [[MOD:.*]] @@ -55,4 +55,4 @@ CHECK-DAG: Function{[[FID4:.*]]}, mangled = ?Func@Class@@QEAAXXZ CHECK-NEXT: Block{[[FID4]]} CHECK-DAG: Variable{{.*}}, name = "this" CHECK-SAME: scope = parameter -CHECK-SAME: artificial
\ No newline at end of file +CHECK-SAME: artificial |