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
a07d343a
Commit
a07d343a
authored
10 years ago
by
Nicolas Noble
Browse files
Options
Downloads
Plain Diff
Merge pull request #671 from ctiller/interop
Make run_tests.py respect the run= attribute
parents
d539f69c
9024f471
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+2
-0
2 additions, 0 deletions
Makefile
build.json
+0
-1
0 additions, 1 deletion
build.json
templates/tools/run_tests/tests.json.template
+1
-1
1 addition, 1 deletion
templates/tools/run_tests/tests.json.template
with
3 additions
and
2 deletions
Makefile
+
2
−
0
View file @
a07d343a
...
@@ -1018,6 +1018,8 @@ test_c: buildtests_c
...
@@ -1018,6 +1018,8 @@ test_c: buildtests_c
$(Q) $(BINDIR)/$(CONFIG)/httpcli_test || ( echo test httpcli_test failed ; exit 1 )
$(Q) $(BINDIR)/$(CONFIG)/httpcli_test || ( echo test httpcli_test failed ; exit 1 )
$(E) "[RUN] Testing interop_test"
$(E) "[RUN] Testing interop_test"
$(Q) $(BINDIR)/$(CONFIG)/interop_test || ( echo test interop_test failed ; exit 1 )
$(Q) $(BINDIR)/$(CONFIG)/interop_test || ( echo test interop_test failed ; exit 1 )
$(E) "[RUN] Testing json_rewrite_test"
$(Q) $(BINDIR)/$(CONFIG)/json_rewrite_test || ( echo test json_rewrite_test failed ; exit 1 )
$(E) "[RUN] Testing json_test"
$(E) "[RUN] Testing json_test"
$(Q) $(BINDIR)/$(CONFIG)/json_test || ( echo test json_test failed ; exit 1 )
$(Q) $(BINDIR)/$(CONFIG)/json_test || ( echo test json_test failed ; exit 1 )
$(E) "[RUN] Testing lame_client_test"
$(E) "[RUN] Testing lame_client_test"
This diff is collapsed.
Click to expand it.
build.json
+
0
−
1
View file @
a07d343a
...
@@ -1282,7 +1282,6 @@
...
@@ -1282,7 +1282,6 @@
{
{
"name"
:
"json_rewrite_test"
,
"name"
:
"json_rewrite_test"
,
"build"
:
"test"
,
"build"
:
"test"
,
"run"
:
false
,
"language"
:
"c"
,
"language"
:
"c"
,
"src"
:
[
"src"
:
[
"test/core/json/json_rewrite_test.c"
"test/core/json/json_rewrite_test.c"
...
...
This diff is collapsed.
Click to expand it.
templates/tools/run_tests/tests.json.template
+
1
−
1
View file @
a07d343a
...
@@ -4,6 +4,6 @@ import json
...
@@ -4,6 +4,6 @@ import json
${json.dumps([{"name": tgt.name, "language": tgt.language}
${json.dumps([{"name": tgt.name, "language": tgt.language}
for tgt in targets
for tgt in targets
if tgt.
build == "test" and tgt.name[-5:]
==
"_
test
"
],
if tgt.
get('run', True) and tgt.build
==
'
test
'
],
sort_keys=True, indent=2)}
sort_keys=True, indent=2)}
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