Chromium Code Reviews| Index: tools/testing/test_case.py |
| =================================================================== |
| --- tools/testing/test_case.py (revision 431) |
| +++ tools/testing/test_case.py (working copy) |
| @@ -154,3 +154,7 @@ |
| def GetName(self): |
| return self.path[-1] |
| + |
| + def Cleanup(self): |
| + if not self.context.keep_temporary_files: |
|
zundel
2011/10/14 13:57:22
What do you think about moving this method to Test
ngeoffray
2011/10/14 14:08:39
I'd rather not touch TestCase. The run_arch kind o
zundel
2011/10/14 14:13:02
No, I don't think adding a class in between would
ngeoffray
2011/10/14 14:25:06
OK, committing then. If it turns out there are too
|
| + self.run_arch.Cleanup() |