Index: build/android/pylib/gtest/test_runner.py |
diff --git a/build/android/pylib/gtest/test_runner.py b/build/android/pylib/gtest/test_runner.py |
index 2a93e37532c828045c54011ebc0a77012985c964..ba943dfc2a67d364c6636dbed680cc10b8c87b6e 100644 |
--- a/build/android/pylib/gtest/test_runner.py |
+++ b/build/android/pylib/gtest/test_runner.py |
@@ -187,5 +187,8 @@ class TestRunner(base_test_runner.BaseTestRunner): |
#override |
def TearDown(self): |
"""Cleans up the test enviroment for the test suite.""" |
+ self.adb.RunShellCommand('rm -r ' + |
frankf
2013/08/01 00:07:10
Also let's add a comment why this is needed.
|
+ os.path.join(self.adb.GetExternalStorage(), 'content_shell'), |
frankf
2013/07/31 23:57:18
nit: sometimes we use '/', sometimes we use os.pat
|
+ timeout_time=60 * 2) |
self.tool.CleanUpEnvironment() |
super(TestRunner, self).TearDown() |