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

Unified Diff: client/tests/kvm/tests/nic_promisc.py

Issue 6124004: Revert "Merge remote branch 'cros/upstream' into autotest-rebase" (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Created 9 years, 11 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
« no previous file with comments | « client/tests/kvm/tests/nic_hotplug.py ('k') | client/tests/kvm/tests/nicdriver_unload.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/kvm/tests/nic_promisc.py
diff --git a/client/tests/kvm/tests/nic_promisc.py b/client/tests/kvm/tests/nic_promisc.py
index f4bf1e403953889151c9684aa47894462e4a6ba9..99bbf8cee15abbff70307a663f2296311d65c1bd 100644
--- a/client/tests/kvm/tests/nic_promisc.py
+++ b/client/tests/kvm/tests/nic_promisc.py
@@ -1,4 +1,4 @@
-import logging, threading
+import logging
from autotest_lib.client.common_lib import error
from autotest_lib.client.bin import utils
import kvm_utils, kvm_test_utils
@@ -21,12 +21,21 @@ def run_nic_promisc(test, params, env):
timeout = int(params.get("login_timeout", 360))
vm = kvm_test_utils.get_living_vm(env, params.get("main_vm"))
session = kvm_test_utils.wait_for_login(vm, timeout=timeout)
- session_serial = kvm_test_utils.wait_for_login(vm, 0, timeout, 0, 2,
- serial=True)
+
+ logging.info("Trying to log into guest '%s' by serial", vm.name)
+ session2 = kvm_utils.wait_for(lambda: vm.serial_login(),
+ timeout, 0, step=2)
+ if not session2:
+ raise error.TestFail("Could not log into guest '%s'" % vm.name)
def compare(filename):
+ cmd = "md5sum %s" % filename
md5_host = utils.hash_file(filename, method="md5")
- md5_guest = session.cmd("md5sum %s" % filename)
+ rc_guest, md5_guest = session.get_command_status_output(cmd)
+ if rc_guest:
+ logging.debug("Could not get MD5 hash for file %s on guest,"
+ "output: %s", filename, md5_guest)
+ return False
md5_guest = md5_guest.split()[0]
if md5_host != md5_guest:
logging.error("MD5 hash mismatch between file %s "
@@ -37,28 +46,11 @@ def run_nic_promisc(test, params, env):
return True
ethname = kvm_test_utils.get_linux_ifname(session, vm.get_mac_address(0))
-
- class ThreadPromiscCmd(threading.Thread):
- def __init__(self, session, termination_event):
- self.session = session
- self.termination_event = termination_event
- super(ThreadPromiscCmd, self).__init__()
-
-
- def run(self):
- set_promisc_cmd = ("ip link set %s promisc on; sleep 0.01;"
- "ip link set %s promisc off; sleep 0.01" %
- (ethname, ethname))
- while True:
- self.session.cmd_output(set_promisc_cmd)
- if self.termination_event.isSet():
- break
-
-
- logging.info("Started thread to change promisc mode in guest")
- termination_event = threading.Event()
- promisc_thread = ThreadPromiscCmd(session_serial, termination_event)
- promisc_thread.start()
+ set_promisc_cmd = ("ip link set %s promisc on; sleep 0.01;"
+ "ip link set %s promisc off; sleep 0.01" %
+ (ethname, ethname))
+ logging.info("Set promisc change repeatedly in guest")
+ session2.sendline("while true; do %s; done" % set_promisc_cmd)
dd_cmd = "dd if=/dev/urandom of=%s bs=%d count=1"
filename = "/tmp/nic_promisc_file"
@@ -80,7 +72,10 @@ def run_nic_promisc(test, params, env):
success_counter += 1
logging.info("Create %s bytes file on guest" % size)
- session.cmd(dd_cmd % (filename, int(size)), timeout=100)
+ if session.get_command_status(dd_cmd % (filename, int(size)),
+ timeout=100) != 0:
+ logging.error("Create file on guest failed")
+ continue
logging.info("Transfer file from guest to host")
if not vm.copy_files_from(filename, filename):
@@ -95,14 +90,12 @@ def run_nic_promisc(test, params, env):
logging.info("Clean temporary files")
cmd = "rm -f %s" % filename
utils.run(cmd)
- session.cmd_output(cmd)
+ session.get_command_status(cmd)
finally:
- logging.info("Stopping the promisc thread")
- termination_event.set()
- promisc_thread.join(10)
logging.info("Restore the %s to the nonpromisc mode", ethname)
- session.cmd_output("ip link set %s promisc off" % ethname)
+ session2.close()
+ session.get_command_status("ip link set %s promisc off" % ethname)
session.close()
if success_counter != 2 * len(file_size):
« no previous file with comments | « client/tests/kvm/tests/nic_hotplug.py ('k') | client/tests/kvm/tests/nicdriver_unload.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698