[Lldb-commits] [lldb] r138011 - /lldb/trunk/test/lang/c/strings/TestCStrings.py
Johnny Chen
johnny.chen at apple.com
Thu Aug 18 16:53:03 PDT 2011
Author: johnny
Date: Thu Aug 18 18:53:03 2011
New Revision: 138011
URL: http://llvm.org/viewvc/llvm-project?rev=138011&view=rev
Log:
Add expectedFailure decorator.
Failed possibly due to rollback of llvm/clang.
Modified:
lldb/trunk/test/lang/c/strings/TestCStrings.py
Modified: lldb/trunk/test/lang/c/strings/TestCStrings.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/strings/TestCStrings.py?rev=138011&r1=138010&r2=138011&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/strings/TestCStrings.py (original)
+++ lldb/trunk/test/lang/c/strings/TestCStrings.py Thu Aug 18 18:53:03 2011
@@ -8,12 +8,16 @@
mydir = os.path.join("lang", "c", "strings")
+ # Due to rollback of llvm/clang?
+ @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
"""Tests that C strings work as expected in expressions"""
self.buildDsym()
self.static_method_commands()
+ # Due to rollback of llvm/clang?
+ @unittest2.expectedFailure
def test_with_dwarf_and_run_command(self):
"""Tests that C strings work as expected in expressions"""
self.buildDwarf()
More information about the lldb-commits
mailing list