Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Unified Diff: client/site_tests/logging_CrashServices/logging_CrashServices.py

Issue 5740004: Move site_chrome_test, site_logging, site_log_reader, site_crash_test into cros dir. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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):

Powered by Google App Engine
This is Rietveld 408576698