Call self.setTearDownCleanup() and pass a proper dictionay to properly cleanup

the intermediate files built with the same dictionary during test execution.

llvm-svn: 126530
This commit is contained in:
Johnny Chen 2011-02-25 23:22:59 +00:00
parent 90eb2cbaee
commit d08df5b016
1 changed files with 2 additions and 0 deletions

View File

@ -17,11 +17,13 @@ class ConstStringTestCase(TestBase):
def test_break_with_dsym(self):
"""Test constant string generation amd comparison by the expression parser."""
self.buildDsym(dictionary=self.d)
self.setTearDownCleanup(self.d)
self.objc_const_strings()
def test_break_with_dwarf(self):
"""Test constant string generation amd comparison by the expression parser."""
self.buildDwarf(dictionary=self.d)
self.setTearDownCleanup(self.d)
self.objc_const_strings()
def setUp(self):