forked from OSchip/llvm-project
[LLDB] Fix broken testsuite due to Xfail decorators
Following test cases need minor adjustment in order to accomodate xfail decorator: lldb/test/Shell/SymbolFile/NativePDB/break-by-line.cpp lldb/test/Shell/SymbolFile/NativePDB/source-list.cpp
This commit is contained in:
parent
44e5aaf911
commit
20629ca949
|
@ -1,3 +1,3 @@
|
|||
break set -f break-by-line.cpp -l 14
|
||||
break set -f break-by-line.cpp -l 15
|
||||
break list
|
||||
quit
|
||||
|
|
|
@ -23,5 +23,5 @@ int main(int argc, char **argv) {
|
|||
|
||||
// CHECK: (lldb) target create "{{.*}}break-by-line.cpp.tmp.exe"
|
||||
// CHECK: Current executable set to '{{.*}}break-by-line.cpp.tmp.exe'
|
||||
// CHECK: (lldb) break set -f break-by-line.cpp -l 14
|
||||
// CHECK: Breakpoint 1: where = break-by-line.cpp.tmp.exe`NS::NamespaceFn + {{[0-9]+}} at break-by-line.cpp:14
|
||||
// CHECK: (lldb) break set -f break-by-line.cpp -l 15
|
||||
// CHECK: Breakpoint 1: where = break-by-line.cpp.tmp.exe`NS::NamespaceFn + {{[0-9]+}} at break-by-line.cpp:15
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
// RUN: %p/Inputs/source-list.lldbinit | FileCheck %s
|
||||
|
||||
|
||||
|
||||
// Some context lines before
|
||||
// the function.
|
||||
|
||||
|
|
Loading…
Reference in New Issue