forked from OSchip/llvm-project
Remove ancient icc decorators
Nobody is running the test suite with icc, so we have no idea if they pass. But the bug they link to has definitely been fixed. llvm-svn: 282408
This commit is contained in:
parent
b32c3ecdb1
commit
194cae9aba
|
@ -24,9 +24,6 @@ class StdIteratorDataFormatterTestCase(TestBase):
|
|||
self.line = line_number('main.cpp', '// Set break point at this line.')
|
||||
|
||||
@skipIfWindows # libstdcpp not ported to Windows
|
||||
@expectedFailureAll(
|
||||
compiler="icc",
|
||||
bugnumber="llvm.org/pr15301 LLDB prints incorrect sizes of STL containers")
|
||||
def test_with_run_command(self):
|
||||
"""Test that libstdcpp iterators format properly."""
|
||||
self.build()
|
||||
|
|
|
@ -23,9 +23,6 @@ class StdMapDataFormatterTestCase(TestBase):
|
|||
# Find the line number to break at.
|
||||
self.line = line_number('main.cpp', '// Set break point at this line.')
|
||||
|
||||
@expectedFailureAll(
|
||||
compiler="icc",
|
||||
bugnumber="llvm.org/pr15301 LLDB prints incorrect sizes of STL containers")
|
||||
@skipIfWindows # libstdcpp not ported to Windows
|
||||
@skipIfFreeBSD
|
||||
def test_with_run_command(self):
|
||||
|
|
|
@ -26,9 +26,6 @@ class StdVBoolDataFormatterTestCase(TestBase):
|
|||
@expectedFailureAll(
|
||||
oslist=['freebsd'],
|
||||
bugnumber='llvm.org/pr20548 fails to build on lab.llvm.org buildbot')
|
||||
@expectedFailureAll(
|
||||
compiler="icc",
|
||||
bugnumber="llvm.org/pr15301 LLDB prints incorrect sizes of STL containers")
|
||||
@skipIfWindows # libstdcpp not ported to Windows.
|
||||
@skipIfDarwin
|
||||
def test_with_run_command(self):
|
||||
|
|
|
@ -24,9 +24,6 @@ class StdVectorDataFormatterTestCase(TestBase):
|
|||
self.line = line_number('main.cpp', '// Set break point at this line.')
|
||||
|
||||
@skipIfFreeBSD
|
||||
@expectedFailureAll(
|
||||
compiler="icc",
|
||||
bugnumber="llvm.org/pr15301 LLDB prints incorrect sizes of STL containers")
|
||||
@skipIfWindows # libstdcpp not ported to Windows
|
||||
def test_with_run_command(self):
|
||||
"""Test that that file and class static variables display correctly."""
|
||||
|
|
Loading…
Reference in New Issue