OLD | NEW |
1 #!/usr/bin/python | |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 # 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 |
4 # found in the LICENSE file. | 3 # found in the LICENSE file. |
5 | 4 |
6 import logging | 5 import logging |
7 import os | 6 import os |
8 import sys | 7 import sys |
9 | 8 |
10 from base_test_runner import BaseTestRunner | 9 from base_test_runner import BaseTestRunner |
11 import debug_info | 10 import debug_info |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 | 305 |
307 Returns: | 306 Returns: |
308 A TestResults object. | 307 A TestResults object. |
309 """ | 308 """ |
310 self.SetUp() | 309 self.SetUp() |
311 try: | 310 try: |
312 self._RunTestsForSuiteInternal() | 311 self._RunTestsForSuiteInternal() |
313 finally: | 312 finally: |
314 self.TearDown() | 313 self.TearDown() |
315 return self.test_results | 314 return self.test_results |
OLD | NEW |