From d08df5b016156f0a26de7f288609d0bd64ae28cb Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Fri, 25 Feb 2011 23:22:59 +0000 Subject: [PATCH] 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 --- lldb/test/foundation/TestConstStrings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/test/foundation/TestConstStrings.py b/lldb/test/foundation/TestConstStrings.py index f47b20380ead..54ececad80d6 100644 --- a/lldb/test/foundation/TestConstStrings.py +++ b/lldb/test/foundation/TestConstStrings.py @@ -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):