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
bf25e240
Commit
bf25e240
authored
8 years ago
by
Mark D. Roth
Browse files
Options
Downloads
Patches
Plain Diff
Fix test name conflict in import. Also use low-thread-count variant for asan.
parent
9c6b5951
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/cpp/qps/gen_build_yaml.py
+3
-3
3 additions, 3 deletions
test/cpp/qps/gen_build_yaml.py
tools/run_tests/tests.json
+102
-102
102 additions, 102 deletions
tools/run_tests/tests.json
with
105 additions
and
105 deletions
test/cpp/qps/gen_build_yaml.py
+
3
−
3
View file @
bf25e240
...
@@ -91,7 +91,7 @@ print yaml.dump({
...
@@ -91,7 +91,7 @@ print yaml.dump({
'
boringssl
'
:
True
,
'
boringssl
'
:
True
,
'
defaults
'
:
'
boringssl
'
,
'
defaults
'
:
'
boringssl
'
,
'
cpu_cost
'
:
guess_cpu
(
scenario_json
,
False
),
'
cpu_cost
'
:
guess_cpu
(
scenario_json
,
False
),
'
exclude_configs
'
:
[
'
tsan
'
],
'
exclude_configs
'
:
[
'
tsan
'
,
'
asan
'
],
'
timeout_seconds
'
:
6
*
60
'
timeout_seconds
'
:
6
*
60
}
}
for
scenario_json
in
scenario_config
.
CXXLanguage
().
scenarios
()
for
scenario_json
in
scenario_config
.
CXXLanguage
().
scenarios
()
...
@@ -99,7 +99,7 @@ print yaml.dump({
...
@@ -99,7 +99,7 @@ print yaml.dump({
]
+
[
]
+
[
{
{
'
name
'
:
'
json_run_localhost
'
,
'
name
'
:
'
json_run_localhost
'
,
'
shortname
'
:
'
json_run_localhost:%s
'
%
scenario_json
[
'
name
'
],
'
shortname
'
:
'
json_run_localhost:%s
_low_thread_count
'
%
scenario_json
[
'
name
'
],
'
args
'
:
[
'
--scenarios_json
'
,
_scenario_json_string
(
scenario_json
,
True
)],
'
args
'
:
[
'
--scenarios_json
'
,
_scenario_json_string
(
scenario_json
,
True
)],
'
ci_platforms
'
:
[
'
linux
'
],
'
ci_platforms
'
:
[
'
linux
'
],
'
platforms
'
:
[
'
linux
'
],
'
platforms
'
:
[
'
linux
'
],
...
@@ -108,7 +108,7 @@ print yaml.dump({
...
@@ -108,7 +108,7 @@ print yaml.dump({
'
boringssl
'
:
True
,
'
boringssl
'
:
True
,
'
defaults
'
:
'
boringssl
'
,
'
defaults
'
:
'
boringssl
'
,
'
cpu_cost
'
:
guess_cpu
(
scenario_json
,
True
),
'
cpu_cost
'
:
guess_cpu
(
scenario_json
,
True
),
'
exclude_configs
'
:
sorted
(
c
for
c
in
configs_from_yaml
if
c
!=
'
tsan
'
),
'
exclude_configs
'
:
sorted
(
c
for
c
in
configs_from_yaml
if
c
not
in
(
'
tsan
'
,
'
asan
'
)
),
'
timeout_seconds
'
:
6
*
60
'
timeout_seconds
'
:
6
*
60
}
}
for
scenario_json
in
scenario_config
.
CXXLanguage
().
scenarios
()
for
scenario_json
in
scenario_config
.
CXXLanguage
().
scenarios
()
...
...
This diff is collapsed.
Click to expand it.
tools/run_tests/tests.json
+
102
−
102
View file @
bf25e240
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