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

Johnny Chen johnny.chen at apple.com
Tue Aug 23 15:10:17 PDT 2011


Author: johnny
Date: Tue Aug 23 17:10:17 2011
New Revision: 138393

URL: http://llvm.org/viewvc/llvm-project?rev=138393&view=rev
Log:
Skip these two cases temporarily while investigating the crash on OSX Lion with clang as the compiler.

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=138393&r1=138392&r2=138393&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/this/TestCPPThis.py (original)
+++ lldb/trunk/test/lang/cpp/this/TestCPPThis.py Tue Aug 23 17:10:17 2011
@@ -8,6 +8,7 @@
     
     mydir = os.path.join("lang", "cpp", "this")
     
+    @unittest2.skip("segmentation fault -- skipping")
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     #rdar://problem/9962849
     @expectedFailureClang
@@ -16,6 +17,7 @@
         self.buildDsym()
         self.static_method_commands()
 
+    @unittest2.skip("segmentation fault -- skipping")
     #rdar://problem/9962849
     @expectedFailureClang
     def test_with_dwarf_and_run_command(self):





More information about the lldb-commits mailing list