forked from OSchip/llvm-project
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. This is a recommit of r326134, with the required import added. llvm.org/pr36527 llvm-svn: 326166
This commit is contained in:
parent
d8b7d893a5
commit
883b6ee70a
|
@ -6,6 +6,7 @@ from __future__ import print_function
|
|||
import os
|
||||
import time
|
||||
import lldb
|
||||
from lldbsuite.test.decorators import *
|
||||
from lldbsuite.test.lldbtest import *
|
||||
import lldbsuite.test.lldbutil as lldbutil
|
||||
|
||||
|
@ -14,6 +15,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 +23,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 +31,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 +39,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 +47,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 +55,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 +63,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 +71,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(
|
||||
|
|
Loading…
Reference in New Issue