OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import logging | 5 import logging |
6 import os | 6 import os |
7 import re | 7 import re |
8 | 8 |
9 from pylib import constants | 9 from pylib import constants |
10 from pylib import pexpect | 10 from pylib import pexpect |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 if _TestSuiteRequiresMockTestServer(self.test_package.suite_name): | 185 if _TestSuiteRequiresMockTestServer(self.test_package.suite_name): |
186 self.LaunchChromeTestServerSpawner() | 186 self.LaunchChromeTestServerSpawner() |
187 if _TestSuiteRequiresHighPerfMode(self.test_package.suite_name): | 187 if _TestSuiteRequiresHighPerfMode(self.test_package.suite_name): |
188 self._perf_controller.SetHighPerfMode() | 188 self._perf_controller.SetHighPerfMode() |
189 self.tool.SetupEnvironment() | 189 self.tool.SetupEnvironment() |
190 | 190 |
191 #override | 191 #override |
192 def TearDown(self): | 192 def TearDown(self): |
193 """Cleans up the test enviroment for the test suite.""" | 193 """Cleans up the test enviroment for the test suite.""" |
194 if _TestSuiteRequiresHighPerfMode(self.test_package.suite_name): | 194 if _TestSuiteRequiresHighPerfMode(self.test_package.suite_name): |
195 self._perf_controller.RestoreOriginalPerfMode() | 195 self._perf_controller.SetDefaultPerfMode() |
196 self.test_package.ClearApplicationState(self.device) | 196 self.test_package.ClearApplicationState(self.device) |
197 self.tool.CleanUpEnvironment() | 197 self.tool.CleanUpEnvironment() |
198 super(TestRunner, self).TearDown() | 198 super(TestRunner, self).TearDown() |
OLD | NEW |