| 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..07e48df4abe3ee50009b65b3be700367e61416bd 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
|
| 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
|
|
|
| -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):
|
|
|