[lldb] [test] Remove xfail from tests that pass on FreeBSD

This commit is contained in:
Michał Górny 2020-11-03 18:46:10 +01:00
parent f5eebc25cc
commit b7de7be098
6 changed files with 1 additions and 18 deletions

View File

@ -19,7 +19,7 @@ class TestMultipleTargets(TestBase):
@skipIfNoSBHeaders
@skipIfHostIncompatibleWithRemote
@expectedFailureAll(
oslist=["windows", "freebsd"],
oslist=["windows"],
bugnumber="llvm.org/pr20282")
def test_multiple_targets(self):
env = {self.dylibPath: self.getLLDBLibraryEnvVal()}

View File

@ -25,9 +25,6 @@ class AvoidsFdLeakTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureIfFn(python_leaky_fd_version, "bugs.freebsd.org/197376")
@expectedFailureAll(
oslist=['freebsd'],
bugnumber="llvm.org/pr25624 still failing with Python 2.7.10")
# The check for descriptor leakage needs to be implemented differently
# here.
@skipIfWindows

View File

@ -13,9 +13,6 @@ class SkipSummaryDataFormatterTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureAll(
oslist=['freebsd'],
bugnumber="llvm.org/pr20548 fails to build on lab.llvm.org buildbot")
@expectedFailureAll(
oslist=["windows"],
bugnumber="llvm.org/pr24462, Data formatters have problems on Windows")

View File

@ -37,7 +37,6 @@ class CPP11EnumTypesTestCase(TestBase):
self.expect_expr("var_below_" + suffix, result_type=enum_name, result_value="-3")
self.expect_expr("var_above_" + suffix, result_type=enum_name, result_value="1")
@expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr36527')
@skipIf(dwarf_version=['<', '4'])
def test(self):
self.build()

View File

@ -38,9 +38,6 @@ class NamespaceLookupTestCase(TestBase):
substrs=['stopped',
'stop reason = breakpoint'])
@expectedFailureAll(
oslist=["freebsd"],
bugnumber="llvm.org/pr25819")
@skipIfWindows # This is flakey on Windows: llvm.org/pr38373
def test_scope_lookup_with_run_command(self):
"""Test scope lookup of functions in lldb."""
@ -225,9 +222,6 @@ class NamespaceLookupTestCase(TestBase):
compiler="gcc",
oslist=["linux"],
debug_info=["dwo"]) # Skip to avoid crash
@expectedFailureAll(
oslist=["freebsd"],
bugnumber="llvm.org/pr25819")
def test_scope_after_using_directive_lookup_with_run_command(self):
"""Test scope lookup after using directive in lldb."""
self.build()
@ -289,9 +283,6 @@ class NamespaceLookupTestCase(TestBase):
# the same type.
self.expect("expr -- func()", startstr="error")
@expectedFailureAll(
oslist=["freebsd"],
bugnumber="llvm.org/pr25819")
def test_scope_lookup_shadowed_by_using_with_run_command(self):
"""Test scope lookup shadowed by using in lldb."""
self.build()

View File

@ -40,7 +40,6 @@ class ThreadAPITestCase(TestBase):
@skipIfAsan # The output looks different under ASAN.
@add_test_categories(['pyapi'])
@expectedFailureAll(oslist=["linux"], archs=['arm'], bugnumber="llvm.org/pr45892")
@expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr20476')
@expectedFailureAll(oslist=["windows"])
@expectedFailureNetBSD
def test_step_out_of_malloc_into_function_b(self):