forked from OSchip/llvm-project
XFail TestNamespaceLookup tests on Windows.
There's already a pr: https://llvm.org/bugs/show_bug.cgi?id=25819 llvm-svn: 258577
This commit is contained in:
parent
1829c686bf
commit
3ca8aa5af6
|
@ -35,6 +35,7 @@ class NamespaceLookupTestCase(TestBase):
|
|||
|
||||
@expectedFailureFreeBSD("llvm.org/pr25819")
|
||||
@expectedFailureLinux("llvm.org/pr25819")
|
||||
@expectedFailureWindows("llvm.org/pr25819")
|
||||
def test_scope_lookup_with_run_command(self):
|
||||
"""Test scope lookup of functions in lldb."""
|
||||
self.build()
|
||||
|
@ -145,6 +146,7 @@ class NamespaceLookupTestCase(TestBase):
|
|||
self.expect("expr -- func()", startstr = "(int) $0 = 2")
|
||||
|
||||
@expectedFailureLinux("llvm.org/pr25819")
|
||||
@expectedFailureWindows("llvm.org/pr25819")
|
||||
def test_scope_lookup_before_using_with_run_command(self):
|
||||
"""Test scope lookup before using in lldb."""
|
||||
self.build()
|
||||
|
@ -158,9 +160,10 @@ class NamespaceLookupTestCase(TestBase):
|
|||
self.expect("expr -- func()", startstr = "(int) $0 = 1")
|
||||
|
||||
# NOTE: this test may fail on older systems that don't emit import
|
||||
# emtries in DWARF - may need to add checks for compiler versions here.
|
||||
# entries in DWARF - may need to add checks for compiler versions here.
|
||||
@expectedFailureFreeBSD("llvm.org/pr25819")
|
||||
@expectedFailureLinux("llvm.org/pr25819")
|
||||
@expectedFailureWindows("llvm.org/pr25819")
|
||||
def test_scope_after_using_directive_lookup_with_run_command(self):
|
||||
"""Test scope lookup after using directive in lldb."""
|
||||
self.build()
|
||||
|
@ -205,6 +208,7 @@ class NamespaceLookupTestCase(TestBase):
|
|||
|
||||
@expectedFailureFreeBSD("llvm.org/pr25819")
|
||||
@expectedFailureLinux("llvm.org/pr25819")
|
||||
@expectedFailureWindows("llvm.org/pr25819")
|
||||
def test_scope_lookup_shadowed_by_using_with_run_command(self):
|
||||
"""Test scope lookup shadowed by using in lldb."""
|
||||
self.build()
|
||||
|
|
Loading…
Reference in New Issue