Author: amccarth
Date: Fri Jan 22 17:05:29 2016
New Revision: 258577

URL: http://llvm.org/viewvc/llvm-project?rev=258577&view=rev
Log:
XFail TestNamespaceLookup tests on Windows.

There's already a pr:  https://llvm.org/bugs/show_bug.cgi?id=25819

Modified:
    
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py

Modified: 
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py?rev=258577&r1=258576&r2=258577&view=diff
==============================================================================
--- 
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
 (original)
+++ 
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
 Fri Jan 22 17:05:29 2016
@@ -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()


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to