Currently, for each guest "load session", a login is performed, followed immediately by sending the command that initiates the load. When the second login is attempted, the guest is already loaded by the first session, and therefore may respond slowly to the login request. This patch makes the test open all load sessions first, and then send the load command to all open sessions. Signed-off-by: Michael Goldish <mgoldish@xxxxxxxxxx> --- client/tests/kvm/tests/timedrift.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/client/tests/kvm/tests/timedrift.py b/client/tests/kvm/tests/timedrift.py index b3e8770..194f09c 100644 --- a/client/tests/kvm/tests/timedrift.py +++ b/client/tests/kvm/tests/timedrift.py @@ -98,8 +98,9 @@ def run_timedrift(test, params, env): raise error.TestFail("Could not log into guest") load_session.set_output_prefix("(guest load %d) " % i) load_session.set_output_func(logging.debug) - load_session.sendline(guest_load_command) guest_load_sessions.append(load_session) + for load_session in guest_load_sessions: + load_session.sendline(guest_load_command) # Run some load on the host logging.info("Starting load on host...") -- 1.5.4.1 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html