[Lldb-commits] [lldb] r126530 - /lldb/trunk/test/foundation/TestConstStrings.py
Johnny Chen
johnny.chen at apple.com
Fri Feb 25 15:23:00 PST 2011
Author: johnny
Date: Fri Feb 25 17:22:59 2011
New Revision: 126530
URL: http://llvm.org/viewvc/llvm-project?rev=126530&view=rev
Log:
Call self.setTearDownCleanup() and pass a proper dictionay to properly cleanup
the intermediate files built with the same dictionary during test execution.
Modified:
lldb/trunk/test/foundation/TestConstStrings.py
Modified: lldb/trunk/test/foundation/TestConstStrings.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/TestConstStrings.py?rev=126530&r1=126529&r2=126530&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestConstStrings.py (original)
+++ lldb/trunk/test/foundation/TestConstStrings.py Fri Feb 25 17:22:59 2011
@@ -17,11 +17,13 @@
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):
More information about the lldb-commits
mailing list