Add more info on the failure.

llvm-svn: 144545
This commit is contained in:
Johnny Chen 2011-11-14 18:33:39 +00:00
parent 4fb79b790f
commit 9b54724cf7
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,7 @@ class STLTestCase(TestBase):
mydir = os.path.join("lang", "cpp", "stl")
# rdar://problem/10400981
@unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):
@ -18,6 +19,7 @@ class STLTestCase(TestBase):
self.buildDsym()
self.step_stl_exprs()
# rdar://problem/10400981
@unittest2.expectedFailure
def test_with_dwarf(self):
"""Test some expressions involving STL data types."""
@ -64,6 +66,7 @@ class STLTestCase(TestBase):
self.runCmd('expr for (int i = 0; i < hello_world.length(); ++i) { (void)printf("%c\\n", hello_world[i]); }')
# rdar://problem/10373783
# rdar://problem/10400981
self.expect('expr associative_array.size()',
substrs = [' = 3'])
self.expect('expr associative_array.count(hello_world)',