[Lldb-commits] [lldb] r326134 - Mark test_*int*_t_dwarf as failing on FreeBSD
Ed Maste via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 26 14:12:24 PST 2018
Author: emaste
Date: Mon Feb 26 14:12:24 2018
New Revision: 326134
URL: http://llvm.org/viewvc/llvm-project?rev=326134&view=rev
Log:
Mark test_*int*_t_dwarf as failing on FreeBSD
Further investigation required; tests will be enabled on the buildbot
worker soon. Marking failing tests for now in order to start with a
green buildbot while investigation takes place.
llvm.org/pr36527
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py?rev=326134&r1=326133&r2=326134&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py Mon Feb 26 14:12:24 2018
@@ -14,6 +14,7 @@ class CPP11EnumTypesTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
+ @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
def test_int8_t(self):
"""Test C++11 enumeration class types as int8_t types."""
self.build(
@@ -21,6 +22,7 @@ class CPP11EnumTypesTestCase(TestBase):
'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int8_t"'})
self.image_lookup_for_enum_type()
+ @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
def test_int16_t(self):
"""Test C++11 enumeration class types as int16_t types."""
self.build(
@@ -28,6 +30,7 @@ class CPP11EnumTypesTestCase(TestBase):
'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int16_t"'})
self.image_lookup_for_enum_type()
+ @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
def test_int32_t(self):
"""Test C++11 enumeration class types as int32_t types."""
self.build(
@@ -35,6 +38,7 @@ class CPP11EnumTypesTestCase(TestBase):
'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int32_t"'})
self.image_lookup_for_enum_type()
+ @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
def test_int64_t(self):
"""Test C++11 enumeration class types as int64_t types."""
self.build(
@@ -42,6 +46,7 @@ class CPP11EnumTypesTestCase(TestBase):
'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int64_t"'})
self.image_lookup_for_enum_type()
+ @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
def test_uint8_t(self):
"""Test C++11 enumeration class types as uint8_t types."""
self.build(
@@ -49,6 +54,7 @@ class CPP11EnumTypesTestCase(TestBase):
'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=uint8_t"'})
self.image_lookup_for_enum_type()
+ @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
def test_uint16_t(self):
"""Test C++11 enumeration class types as uint16_t types."""
self.build(
@@ -56,6 +62,7 @@ class CPP11EnumTypesTestCase(TestBase):
'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=uint16_t"'})
self.image_lookup_for_enum_type()
+ @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
def test_uint32_t(self):
"""Test C++11 enumeration class types as uint32_t types."""
self.build(
@@ -63,6 +70,7 @@ class CPP11EnumTypesTestCase(TestBase):
'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=uint32_t"'})
self.image_lookup_for_enum_type()
+ @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
def test_uint64_t(self):
"""Test C++11 enumeration class types as uint64_t types."""
self.build(
More information about the lldb-commits
mailing list