Breakpad: temporarily XFAIL line-table tests

The tests are failing on windows because the paths in the symbol file
are parsed using the host path style. I'm working on a patch to have
SymbolFileBreakpad auto-detect the correct path style (similar to dwarf
r351328).

I originally wanted to make this a part of the initial line-table patch,
but then I simply forgot.

llvm-svn: 353410
This commit is contained in:
Pavel Labath 2019-02-07 14:47:12 +00:00
parent e39b57386b
commit fe9bb8ff24
4 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,7 @@
# Test that we handle files which has gaps in the FILE record IDs.
# XFAIL: system-windows
# RUN: yaml2obj %S/Inputs/basic-elf.yaml > %T/line-table-discontinuous-file-ids.out
# RUN: %lldb %T/line-table-discontinuous-file-ids.out \
# RUN: -o "target symbols add -s line-table-discontinuous-file-ids.out %S/Inputs/line-table-discontinuous-file-ids.syms" \

View File

@ -2,6 +2,8 @@
# input contains a LINE record which does not belong to any function as well as
# a FUNC record without any LINE records.
# XFAIL: system-windows
# RUN: yaml2obj %S/Inputs/basic-elf.yaml > %T/line-table-edgecases.out
# RUN: %lldb %T/line-table-edgecases.out \
# RUN: -o "target symbols add -s line-table-edgecases.out %S/Inputs/line-table-edgecases.syms" \

View File

@ -3,6 +3,8 @@
# Right now, "something reasonable" means creating a line entry with an empty
# file.
# XFAIL: system-windows
# RUN: yaml2obj %S/Inputs/basic-elf.yaml > %T/line-table-missing-file.out
# RUN: %lldb %T/line-table-missing-file.out \
# RUN: -o "target symbols add -s line-table-missing-file.out %S/Inputs/line-table-missing-file.syms" \

View File

@ -1,3 +1,5 @@
# XFAIL: system-windows
# RUN: yaml2obj %S/Inputs/basic-elf.yaml > %T/line-table.out
# RUN: %lldb %T/line-table.out -o "target symbols add -s line-table.out %S/Inputs/line-table.syms" \
# RUN: -s %s -o exit | FileCheck %s