Skip to content
Snippets Groups Projects
Commit 898a2e91 authored by Alexander Polcyn's avatar Alexander Polcyn
Browse files

clean up error message

parent cac93f67
No related branches found
No related tags found
No related merge requests found
...@@ -453,7 +453,7 @@ if not scenarios: ...@@ -453,7 +453,7 @@ if not scenarios:
raise Exception('No scenarios to run') raise Exception('No scenarios to run')
total_scenario_failures = 0 total_scenario_failures = 0
total_jobs_killed = 0 qps_workers_killed = 0
for scenario in scenarios: for scenario in scenarios:
if args.dry_run: if args.dry_run:
print(scenario.name) print(scenario.name)
...@@ -466,9 +466,9 @@ for scenario in scenarios: ...@@ -466,9 +466,9 @@ for scenario in scenarios:
newline_on_success=True, maxjobs=1) newline_on_success=True, maxjobs=1)
total_scenario_failures += scenario_failures total_scenario_failures += scenario_failures
finally: finally:
# Consider jobs that need to be killed as failures # Consider qps workers that need to be killed as failures
total_jobs_killed += finish_qps_workers(scenario.workers) qps_workers_killed += finish_qps_workers(scenario.workers)
if num_failures > 0: if total_scenario_failures > 0 or qps_workers_killed > 0:
print(str(total_scenario_failures) + " scenarios failed and " + str(total_jobs_killed) + " jobs killed") print ("%s scenarios failed and %s qps worker jobs killed" % (total_scenario_failures, qps_workers_killed))
sys.exit(1) sys.exit(1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment