Skip to content

Commit 4999627

Browse files
author
Johnny Chen
committed
Add some expected failure decorators with radar numbers.
llvm-svn: 138316
1 parent dc94073 commit 4999627

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

lldb/test/lang/cpp/class_static/TestStaticVariables.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,16 @@ def test_with_dwarf_and_run_command(self):
2323
self.static_variable_commands()
2424

2525
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
26+
#rdar://problem/9980907
27+
@expectedFailureClang
2628
@python_api_test
2729
def test_with_dsym_and_python_api(self):
2830
"""Test Python APIs on file and class static variables."""
2931
self.buildDsym()
3032
self.static_variable_python()
3133

34+
#rdar://problem/9980907
35+
@expectedFailureClang
3236
@python_api_test
3337
def test_with_dwarf_and_python_api(self):
3438
"""Test Python APIs on file and class static variables."""

lldb/test/lang/cpp/this/TestCPPThis.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ class CPPThisTestCase(TestBase):
99
mydir = os.path.join("lang", "cpp", "this")
1010

1111
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
12+
#rdar://problem/9962849
13+
@expectedFailureClang
1214
def test_with_dsym_and_run_command(self):
1315
"""Test that the appropriate member variables are available when stopped in C++ static, inline, and const methods"""
1416
self.buildDsym()
1517
self.static_method_commands()
1618

19+
#rdar://problem/9962849
20+
@expectedFailureClang
1721
def test_with_dwarf_and_run_command(self):
1822
"""Test that the appropriate member variables are available when stopped in C++ static, inline, and const methods"""
1923
self.buildDwarf()

0 commit comments

Comments
 (0)