Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
898a2e91
Commit
898a2e91
authored
8 years ago
by
Alexander Polcyn
Browse files
Options
Downloads
Patches
Plain Diff
clean up error message
parent
cac93f67
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/run_tests/run_performance_tests.py
+5
-5
5 additions, 5 deletions
tools/run_tests/run_performance_tests.py
with
5 additions
and
5 deletions
tools/run_tests/run_performance_tests.py
+
5
−
5
View file @
898a2e91
...
@@ -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_job
s_killed
=
0
qps_worker
s_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
job
s that need to be killed as failures
# Consider
qps worker
s that need to be killed as failures
total_job
s_killed
+=
finish_qps_workers
(
scenario
.
workers
)
qps_worker
s_killed
+=
finish_qps_workers
(
scenario
.
workers
)
if
num_failures
>
0
:
if
total_scenario_failures
>
0
or
qps_workers_killed
>
0
:
print
(
str
(
total_
scenario
_
fail
ures
)
+
"
scenarios fa
iled
and
"
+
str
(
total_jobs_killed
)
+
"
jobs
killed
"
)
print
(
"
%s
scenario
s
fail
ed and %s qps worker jobs k
il
l
ed
"
%
(
total_scenario_failures
,
qps_workers_
killed
)
)
sys
.
exit
(
1
)
sys
.
exit
(
1
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment