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

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

Issue 6479003: Move site_backchannel and site_tpm module into client/cros dir. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 10 months 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/network_3GSmokeTest/network_3GSmokeTest.py
diff --git a/client/site_tests/network_3GSmokeTest/network_3GSmokeTest.py b/client/site_tests/network_3GSmokeTest/network_3GSmokeTest.py
index 155d2b5091d04b5d99d6019dcfbace4ebf1371f4..8b88b62cd0c5bb5065db2aef910d2c79e0e3da97 100644
--- a/client/site_tests/network_3GSmokeTest/network_3GSmokeTest.py
+++ b/client/site_tests/network_3GSmokeTest/network_3GSmokeTest.py
@@ -2,8 +2,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from autotest_lib.client.bin import site_backchannel, test, utils
+from autotest_lib.client.bin import test, utils
from autotest_lib.client.common_lib import error
+from autotest_lib.client.cros import backchannel
import logging, re, socket, string, time, urllib2
import dbus, dbus.mainloop.glib, gobject
@@ -226,7 +227,7 @@ class network_3GSmokeTest(test.test):
time.sleep(sleep_kludge)
def run_once(self, connect_count=5, sleep_kludge=5):
- site_backchannel.setup()
+ backchannel.setup()
time.sleep(3)
self.flim = flimflam.FlimFlam()
self.device_manager = flimflam.DeviceManager(self.flim)
@@ -237,4 +238,4 @@ class network_3GSmokeTest(test.test):
try:
self.device_manager.RestoreDevices()
finally:
- site_backchannel.teardown()
+ backchannel.teardown()

Powered by Google App Engine
This is Rietveld 408576698