summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace
diff options
context:
space:
mode:
authorStella Stamenova <stilis@microsoft.com>2018-12-20 00:58:48 +0000
committerStella Stamenova <stilis@microsoft.com>2018-12-20 00:58:48 +0000
commit68ddb768071a01398a01894b6d6d5e7189440613 (patch)
tree5e0997257a806c1868f6aa6880961b371f997fe8 /lldb/packages/Python/lldbsuite/test/lang/cpp/namespace
parent16a0de2e555856444ff4037375bc8f9c024d36af (diff)
downloadbcm5719-llvm-68ddb768071a01398a01894b6d6d5e7189440613.tar.gz
bcm5719-llvm-68ddb768071a01398a01894b6d6d5e7189440613.zip
[lldbsuite] Un-xfail tests on Windows that are now passing (pt.3)
This is a set of tests that were all marked as failing becuse of several different bugs. A couple of the bugs are now resolved as fixed since all the tests that were failing associated with the bug are now passing. It is possible that some of them are false positives, but there's a large number of unexpectedly passing tests on Windows, so I am doing a bulk un-xfail to get the buildbot to green. llvm-svn: 349711
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/namespace')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
index f87dc10d343..196b038b417 100644
--- a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
+++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
@@ -42,7 +42,7 @@ class NamespaceLookupTestCase(TestBase):
'stop reason = breakpoint'])
@expectedFailureAll(
- oslist=["windows", "freebsd"],
+ oslist=["freebsd"],
bugnumber="llvm.org/pr25819")
def test_scope_lookup_with_run_command(self):
"""Test scope lookup of functions in lldb."""
@@ -201,7 +201,6 @@ class NamespaceLookupTestCase(TestBase):
# finds the global ::func().
self.expect("expr -- func()", startstr="(int) $0 = 2")
- @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr25819")
def test_scope_lookup_before_using_with_run_command(self):
"""Test scope lookup before using in lldb."""
self.build()
@@ -227,7 +226,7 @@ class NamespaceLookupTestCase(TestBase):
oslist=["linux"],
debug_info=["dwo"]) # Skip to avoid crash
@expectedFailureAll(
- oslist=["windows", "freebsd"],
+ 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."""
@@ -291,7 +290,7 @@ class NamespaceLookupTestCase(TestBase):
self.expect("expr -- func()", startstr="error")
@expectedFailureAll(
- oslist=["windows", "freebsd"],
+ 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."""
OpenPOWER on IntegriCloud