[Lldb-commits] [lldb] r142839 - /lldb/trunk/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py

Johnny Chen johnny.chen at apple.com
Mon Oct 24 13:06:24 PDT 2011


Author: johnny
Date: Mon Oct 24 15:06:23 2011
New Revision: 142839

URL: http://llvm.org/viewvc/llvm-project?rev=142839&view=rev
Log:
Add two new @expectedFailure decorators.

rdar://problem/10334911

Modified:
    lldb/trunk/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py

Modified: lldb/trunk/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py?rev=142839&r1=142838&r2=142839&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py (original)
+++ lldb/trunk/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py Mon Oct 24 15:06:23 2011
@@ -11,12 +11,16 @@
 
     mydir = os.path.join("functionalities", "data-formatter", "data-formatter-python-synth")
 
+    #rdar://problem/10334911
+    @unittest2.expectedFailure
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym_and_run_command(self):
         """Test data formatter commands."""
         self.buildDsym()
         self.data_formatter_commands()
 
+    #rdar://problem/10334911
+    @unittest2.expectedFailure
     def test_with_dwarf_and_run_command(self):
         """Test data formatter commands."""
         self.buildDwarf()





More information about the lldb-commits mailing list