@@ -257,9 +257,6 @@ def preprocess(test, params, env):
int(params.get("pre_command_timeout", "600")),
params.get("pre_command_noncritical") == "yes")
- # Preprocess all VMs and images
- process(test, params, env, preprocess_image, preprocess_vm)
-
# Start the screendump thread
if params.get("take_regular_screendumps") == "yes":
logging.debug("Starting screendump thread")
@@ -278,6 +275,8 @@ def preprocess(test, params, env):
args=(test, params, env))
_serialdump_thread.start()
+ # Preprocess all VMs and images
+ process(test, params, env, preprocess_image, preprocess_vm)
def postprocess(test, params, env):