Some DIA PDB tests pass with the native plugin already, but didn't test
this. This adds test runs with the native plugin - no functional
changes.
In addition to the x86 calling convention test, there's also
9f102a9004/lldb/test/Shell/SymbolFile/PDB/calling-conventions-arm.test,
but I can't test this.
17 lines
426 B
Plaintext
17 lines
426 B
Plaintext
REQUIRES: target-windows, lld
|
|
RUN: %build --compiler=clang-cl --output=%t.exe %S/Inputs/VBases.cpp
|
|
RUN: %lldb -b -s %S/Inputs/VBases.script -- %t.exe | FileCheck %s
|
|
RUN: env LLDB_USE_NATIVE_PDB_READER=1 %lldb -b -s %S/Inputs/VBases.script -- %t.exe | FileCheck %s
|
|
|
|
CHECK: {
|
|
CHECK: A = (a = '\x01')
|
|
CHECK: B = (b = 2)
|
|
CHECK: c = 3
|
|
CHECK: }
|
|
|
|
CHECK: {
|
|
CHECK: A = (a = '\x01')
|
|
CHECK: B = (b = 2)
|
|
CHECK: c = 3
|
|
CHECK: }
|