[Lldb-commits] [PATCH] D16476: XFail TestNamespaceLookup on Windows.
Adrian McCarthy via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 22 10:51:16 PST 2016
amccarth created this revision.
amccarth added a reviewer: zturner.
amccarth added a subscriber: lldb-commits.
https://llvm.org/bugs/show_bug.cgi?id=25819
http://reviews.llvm.org/D16476
Files:
packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
Index: packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
===================================================================
--- packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
+++ packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
@@ -35,6 +35,7 @@
@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 @@
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 @@
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 @@
@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()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16476.45710.patch
Type: text/x-patch
Size: 1857 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160122/af97fdfd/attachment.bin>
More information about the lldb-commits
mailing list