diff mbox

KVM Test: time_drift_with_stop: Wait a few seconds after the continue

Message ID 20100729033804.2865.46115.stgit@z (mailing list archive)
State New, archived
Headers show

Commit Message

Amos Kong July 29, 2010, 3:38 a.m. UTC
None
diff mbox

Patch

diff --git a/client/tests/kvm/tests/timedrift_with_stop.py b/client/tests/kvm/tests/timedrift_with_stop.py
index fe98571..3473276 100644
--- a/client/tests/kvm/tests/timedrift_with_stop.py
+++ b/client/tests/kvm/tests/timedrift_with_stop.py
@@ -20,6 +20,7 @@  def run_timedrift_with_stop(test, params, env):
     @param env: Dictionary with the test environment.
     """
     login_timeout = int(params.get("login_timeout", 360))
+    sleep_time = int(params.get("sleep_time", 30))
     vm = kvm_test_utils.get_living_vm(env, params.get("main_vm"))
     session = kvm_test_utils.wait_for_login(vm, timeout=login_timeout)
 
@@ -54,6 +55,10 @@  def run_timedrift_with_stop(test, params, env):
             time.sleep(stop_time)
             vm.monitor.cmd("cont")
 
+            # Sleep for a while to wait the interrupt to be reinjected
+            logging.info("Waiting for the interrupt to be reinjected ...")
+            time.sleep(sleep_time)
+
             # Get time after current iteration
             (ht1_, gt1_) = kvm_test_utils.get_time(session, time_command,
                                                    time_filter_re, time_format)