[Lldb-commits] [lldb] r138316 - in /lldb/trunk/test/lang/cpp: class_static/TestStaticVariables.py this/TestCPPThis.py
Johnny Chen
johnny.chen at apple.com
Mon Aug 22 18:00:14 PDT 2011
Author: johnny
Date: Mon Aug 22 20:00:14 2011
New Revision: 138316
URL: http://llvm.org/viewvc/llvm-project?rev=138316&view=rev
Log:
Add some expected failure decorators with radar numbers.
Modified:
lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py
lldb/trunk/test/lang/cpp/this/TestCPPThis.py
Modified: lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py?rev=138316&r1=138315&r2=138316&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py (original)
+++ lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py Mon Aug 22 20:00:14 2011
@@ -23,12 +23,16 @@
self.static_variable_commands()
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
+ #rdar://problem/9980907
+ @expectedFailureClang
@python_api_test
def test_with_dsym_and_python_api(self):
"""Test Python APIs on file and class static variables."""
self.buildDsym()
self.static_variable_python()
+ #rdar://problem/9980907
+ @expectedFailureClang
@python_api_test
def test_with_dwarf_and_python_api(self):
"""Test Python APIs on file and class static variables."""
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=138316&r1=138315&r2=138316&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/this/TestCPPThis.py (original)
+++ lldb/trunk/test/lang/cpp/this/TestCPPThis.py Mon Aug 22 20:00:14 2011
@@ -9,11 +9,15 @@
mydir = os.path.join("lang", "cpp", "this")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
+ #rdar://problem/9962849
+ @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
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