Mark additional ICC failing tests as expected fail.
llvm-svn: 187507
This commit is contained in:
parent
24b49c411c
commit
6460b6e509
|
|
@ -21,6 +21,7 @@ class StdIteratorDataFormatterTestCase(TestBase):
|
|||
|
||||
@dwarf_test
|
||||
@expectedFailureGcc # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers
|
||||
@expectedFailureIcc # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
self.buildDwarf()
|
||||
|
|
|
|||
|
|
@ -23,6 +23,8 @@ class StdMapDataFormatterTestCase(TestBase):
|
|||
# libstdc++ containers
|
||||
@skipIfGcc # llvm.org/pr15036: When built with GCC, this test causes lldb to crash with
|
||||
# assert DeclCXX.h:554 queried property of class with no definition
|
||||
@expectedFailureIcc # llvm.org/pr15301: LLDB prints incorrect size of
|
||||
# libstdc++ containers
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ class StdVBoolDataFormatterTestCase(TestBase):
|
|||
self.line = line_number('main.cpp', '// Set break point at this line.')
|
||||
|
||||
@expectedFailureGcc # llvm.org/pr15301: lldb does not print the correct sizes of STL containers when building with GCC
|
||||
@expectedFailureIcc # llvm.org/pr15301: lldb does not print the correct sizes of STL containers when building with ICC
|
||||
def data_formatter_commands(self):
|
||||
"""Test that that file and class static variables display correctly."""
|
||||
self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ class StdVectorDataFormatterTestCase(TestBase):
|
|||
|
||||
@dwarf_test
|
||||
@expectedFailureClang # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers
|
||||
@expectedFailureIcc # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
if "gcc" in self.getCompiler() and "4.8" in self.getCompilerVersion():
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ class Char1632TestCase(TestBase):
|
|||
self.buildDsym()
|
||||
self.char1632()
|
||||
|
||||
@expectedFailureIcc # ICC (13.1) does not emit the DW_TAG_base_type for char16_t and char32_t.
|
||||
@dwarf_test
|
||||
def test_with_dwarf(self):
|
||||
"""Test that the C++11 support for char16_t and char32_t works correctly."""
|
||||
|
|
|
|||
Loading…
Reference in New Issue