@@ -105,8 +105,8 @@ def barrier_2(vm, words, fail_if_stuck_for, stuck_detection_history,
time.sleep(sleep_duration)
# Failure
- message = "Barrier failed at step %s after %.2f seconds (%s)" % \
- (current_step_num, time.time() - start_time, failure_message)
+ message = ("Barrier failed at step %s after %.2f seconds (%s)" %
+ (current_step_num, time.time() - start_time, failure_message))
# What should we do with this failure?
if words[-1] == "optional":
@@ -201,9 +201,9 @@ def run_steps(test, params, env):
logging.error("Variable not defined: %s" % words[1])
elif words[0] == "barrier_2":
if current_screendump:
- scrdump_filename = \
+ scrdump_filename = (
os.path.join(ppm_utils.get_data_dir(steps_filename),
- current_screendump)
+ current_screendump))
else:
scrdump_filename = None
if not barrier_2(vm, words, fail_if_stuck_for,
@@ -321,8 +321,8 @@ def run_autotest(test, params, env):
status_fail = False
if result_list == []:
status_fail = True
- message_fail = "Test '%s' did not produce any recognizable"
- " results" % test_name
+ message_fail = ("Test '%s' did not produce any recognizable "
+ "results" % test_name)
for result in result_list:
logging.info(str(result))
if result[1] == "FAIL":
@@ -644,8 +644,8 @@ def scp_to_remote(host, port, username, password, local_path, remote_path,
@return: True on success and False on failure.
"""
- command = "scp -o UserKnownHostsFile=/dev/null -r -P %s %s %s@%s:%s" % \
- (port, local_path, username, host, remote_path)
+ command = ("scp -o UserKnownHostsFile=/dev/null -r -P %s %s %s@%s:%s" %
+ (port, local_path, username, host, remote_path))
return remote_scp(command, password, timeout)
@@ -664,8 +664,8 @@ def scp_from_remote(host, port, username, password, remote_path, local_path,
@return: True on success and False on failure.
"""
- command = "scp -o UserKnownHostsFile=/dev/null -r -P %s %s@%s:%s %s" % \
- (port, username, host, remote_path, local_path)
+ command = ("scp -o UserKnownHostsFile=/dev/null -r -P %s %s@%s:%s %s" %
+ (port, username, host, remote_path, local_path))
return remote_scp(command, password, timeout)
@@ -681,8 +681,8 @@ def ssh(host, port, username, password, prompt, timeout=10):
@return: kvm_spawn object on success and None on failure.
"""
- command = "ssh -o UserKnownHostsFile=/dev/null -p %s %s@%s" % \
- (port, username, host)
+ command = ("ssh -o UserKnownHostsFile=/dev/null -p %s %s@%s" %
+ (port, username, host))
return remote_login(command, password, prompt, "\n", timeout)
@@ -118,8 +118,8 @@ class VM:
# Find available monitor filename
while True:
# The monitor filename should be unique
- self.instance = time.strftime("%Y%m%d-%H%M%S-") + \
- kvm_utils.generate_random_string(4)
+ self.instance = (time.strftime("%Y%m%d-%H%M%S-") +
+ kvm_utils.generate_random_string(4))
self.monitor_file_name = os.path.join("/tmp",
"monitor-" + self.instance)
if not os.path.exists(self.monitor_file_name):
@@ -1442,10 +1442,8 @@ return true;
stat_str = 'No test cases executed'
if total_executed>0:
failed_perct = int(float(total_failed)/float(total_executed)*100)
- stat_str = 'From %d tests executed, '
- '%d have passed (%d%s)' % (total_executed, total_passed,failed_perct,
- '% failures')
-
+ stat_str = ('From %d tests executed, %d have passed (%d%% failures)' %
+ (total_executed, total_passed, failed_perct))
kvm_ver_str = metadata['kvmver']