From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Goldish Subject: [KVM-AUTOTEST PATCH 3/5] KVM test: timedrift: first open ssh/rss sessions with the guest, then start load Date: Tue, 23 Mar 2010 21:09:59 +0200 Message-ID: <1269371401-9341-3-git-send-email-mgoldish@redhat.com> References: <1269371401-9341-1-git-send-email-mgoldish@redhat.com> <1269371401-9341-2-git-send-email-mgoldish@redhat.com> Cc: Michael Goldish To: autotest@test.kernel.org, kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:14179 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754081Ab0CWTLO (ORCPT ); Tue, 23 Mar 2010 15:11:14 -0400 In-Reply-To: <1269371401-9341-2-git-send-email-mgoldish@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: 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 --- 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