[Lldb-commits] [lldb] r146427 - /lldb/trunk/test/lang/cpp/this/TestCPPThis.py

Johnny Chen johnny.chen at apple.com
Mon Dec 12 14:07:36 PST 2011


Author: johnny
Date: Mon Dec 12 16:07:36 2011
New Revision: 146427

URL: http://llvm.org/viewvc/llvm-project?rev=146427&view=rev
Log:
Commenting out the two @expectedFailureClang decorators as the tests have been passing for a while
with the recent clang compilers.

The latest I tried is: Apple clang version 3.1 (tags/Apple/clang-318.0.9) (based on LLVM 3.1svn)

Modified:
    lldb/trunk/test/lang/cpp/this/TestCPPThis.py

Modified: lldb/trunk/test/lang/cpp/this/TestCPPThis.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/this/TestCPPThis.py?rev=146427&r1=146426&r2=146427&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/this/TestCPPThis.py (original)
+++ lldb/trunk/test/lang/cpp/this/TestCPPThis.py Mon Dec 12 16:07:36 2011
@@ -10,14 +10,14 @@
     
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     #rdar://problem/9962849
-    @expectedFailureClang
+    #@expectedFailureClang
     def test_with_dsym_and_run_command(self):
         """Test that the appropriate member variables are available when stopped in C++ static, inline, and const methods"""
         self.buildDsym()
         self.static_method_commands()
 
     #rdar://problem/9962849
-    @expectedFailureClang
+    #@expectedFailureClang
     def test_with_dwarf_and_run_command(self):
         """Test that the appropriate member variables are available when stopped in C++ static, inline, and const methods"""
         self.buildDwarf()





More information about the lldb-commits mailing list