Enable a test clause since rdar://problem/8163668 is fixed by http://llvm.org/viewvc/llvm-project?rev=107729&view=rev.

llvm-svn: 107733
This commit is contained in:
Johnny Chen 2010-07-06 23:41:17 +00:00
parent e2d3067f6b
commit 51991b549b
1 changed files with 1 additions and 6 deletions

View File

@ -65,12 +65,7 @@ class TestClassTypes(lldbtest.TestBase):
output = res.GetOutput()
self.assertTrue(res.Succeeded())
self.assertTrue(output.find('state is Stopped') > 0 and
# TODO:
#
# Uncomment 'main.c:40' line when rdar://problem/8163668
# is fixed.
#
#output.find('main.c:40') > 0 and
output.find('main.c:40') > 0 and
output.find('where = a.out`f3') > 0 and
output.find('stop reason = breakpoint') > 0)