[Lldb-commits] [lldb] r268923 - Enable NamespaceLookupTestCase.test_scope_lookup_before_using_with_run_command on linux

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon May 9 07:43:23 PDT 2016


Author: labath
Date: Mon May  9 09:43:22 2016
New Revision: 268923

URL: http://llvm.org/viewvc/llvm-project?rev=268923&view=rev
Log:
Enable NamespaceLookupTestCase.test_scope_lookup_before_using_with_run_command on linux

test appears to be passing now.

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=268923&r1=268922&r2=268923&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 Mon May  9 09:43:22 2016
@@ -144,7 +144,7 @@ class NamespaceLookupTestCase(TestBase):
         # finds the global ::func().
         self.expect("expr -- func()", startstr = "(int) $0 = 2")
 
-    @expectedFailureAll(oslist=["windows", "linux"], bugnumber="llvm.org/pr25819")
+    @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()




More information about the lldb-commits mailing list