Chromium Code Reviews| Index: client/site_tests/logging_CrashServices/logging_CrashServices.py |
| diff --git a/client/site_tests/logging_CrashServices/logging_CrashServices.py b/client/site_tests/logging_CrashServices/logging_CrashServices.py |
| index cadc7b6aca68b91db3ebffcaec483ac3efd1f300..f61b13f659aa8c1cec98bc541bf84c05ecc96386 100644 |
| --- a/client/site_tests/logging_CrashServices/logging_CrashServices.py |
| +++ b/client/site_tests/logging_CrashServices/logging_CrashServices.py |
| @@ -3,12 +3,12 @@ |
| # found in the LICENSE file. |
| import logging, os, os.path, signal, time |
| -from autotest_lib.client.bin import site_crash_test |
| -from autotest_lib.client.bin import site_log_reader, utils |
| +from autotest_lib.client.bin import utils |
|
kmixter1
2010/12/16 03:12:57
extra space
ericli
2010/12/17 21:48:39
Done.
|
| from autotest_lib.client.common_lib import error |
| from autotest_lib.client.cros import constants as chromeos_constants, login |
| +from autotest_lib.client.cros import crash_test, log_reader |
| -class logging_CrashServices(site_crash_test.CrashTest): |
| +class logging_CrashServices(crash_test.CrashTest): |
| version = 1 |
| process_list = ["/usr/sbin/acpid", |
| @@ -87,7 +87,7 @@ class logging_CrashServices(site_crash_test.CrashTest): |
| def initialize(self): |
| - site_crash_test.CrashTest.initialize(self) |
| + crash_test.CrashTest.initialize(self) |
| self._reset_rate_limiting() |
| self._clear_spooled_crashes() |
| self._push_consent() |
| @@ -95,7 +95,7 @@ class logging_CrashServices(site_crash_test.CrashTest): |
| def cleanup(self): |
| - site_crash_test.CrashTest.cleanup(self) |
| + crash_test.CrashTest.cleanup(self) |
| def run_once(self, process_path=None): |