forked from OSchip/llvm-project
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:
parent
90eb2cbaee
commit
d08df5b016
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue