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
fafeeb38
Commit
fafeeb38
authored
9 years ago
by
murgatroid99
Browse files
Options
Downloads
Patches
Plain Diff
Fixed some style issues
parent
256d3dff
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_tests.py
+5
-1
5 additions, 1 deletion
tools/run_tests/run_tests.py
with
5 additions
and
1 deletion
tools/run_tests/run_tests.py
+
5
−
1
View file @
fafeeb38
...
@@ -132,6 +132,7 @@ def get_c_tests(travis, test_lang) :
...
@@ -132,6 +132,7 @@ def get_c_tests(travis, test_lang) :
not
(
travis
and
tgt
[
'
flaky
'
])]
not
(
travis
and
tgt
[
'
flaky
'
])]
return
binaries
return
binaries
class
CLanguage
(
object
):
class
CLanguage
(
object
):
def
__init__
(
self
,
make_target
,
test_lang
):
def
__init__
(
self
,
make_target
,
test_lang
):
...
@@ -144,7 +145,7 @@ class CLanguage(object):
...
@@ -144,7 +145,7 @@ class CLanguage(object):
binaries
=
get_c_tests
(
travis
,
self
.
test_lang
)
binaries
=
get_c_tests
(
travis
,
self
.
test_lang
)
for
target
in
binaries
:
for
target
in
binaries
:
if
config
.
build_config
in
tgt
[
'
exclude_configs
'
]:
if
config
.
build_config
in
tgt
[
'
exclude_configs
'
]:
continue
;
continue
if
self
.
platform
==
'
windows
'
:
if
self
.
platform
==
'
windows
'
:
binary
=
'
vsprojects/%s/%s.exe
'
%
(
binary
=
'
vsprojects/%s/%s.exe
'
%
(
_WINDOWS_CONFIG
[
config
.
build_config
],
target
[
'
name
'
])
_WINDOWS_CONFIG
[
config
.
build_config
],
target
[
'
name
'
])
...
@@ -174,6 +175,7 @@ class CLanguage(object):
...
@@ -174,6 +175,7 @@ class CLanguage(object):
def
__str__
(
self
):
def
__str__
(
self
):
return
self
.
make_target
return
self
.
make_target
def
gyp_test_paths
(
travis
,
config
=
None
):
def
gyp_test_paths
(
travis
,
config
=
None
):
binaries
=
get_c_tests
(
travis
,
'
c
'
)
binaries
=
get_c_tests
(
travis
,
'
c
'
)
out
=
[]
out
=
[]
...
@@ -185,6 +187,7 @@ def gyp_test_paths(travis, config=None):
...
@@ -185,6 +187,7 @@ def gyp_test_paths(travis, config=None):
out
.
append
(
binary
)
out
.
append
(
binary
)
return
sorted
(
out
)
return
sorted
(
out
)
class
GYPCLanguage
(
object
):
class
GYPCLanguage
(
object
):
def
test_specs
(
self
,
config
,
travis
):
def
test_specs
(
self
,
config
,
travis
):
...
@@ -206,6 +209,7 @@ class GYPCLanguage(object):
...
@@ -206,6 +209,7 @@ class GYPCLanguage(object):
def
__str__
(
self
):
def
__str__
(
self
):
return
'
gyp
'
return
'
gyp
'
class
NodeLanguage
(
object
):
class
NodeLanguage
(
object
):
def
test_specs
(
self
,
config
,
travis
):
def
test_specs
(
self
,
config
,
travis
):
...
...
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