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
68a94c8f
Commit
68a94c8f
authored
9 years ago
by
Masood Malekghassemi
Browse files
Options
Downloads
Patches
Plain Diff
Don't set linetrace unless testing coverage
parent
d68ee7e2
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
setup.py
+6
-1
6 additions, 1 deletion
setup.py
tools/run_tests/build_python.sh
+5
-1
5 additions, 1 deletion
tools/run_tests/build_python.sh
tools/run_tests/run_python.sh
+1
-1
1 addition, 1 deletion
tools/run_tests/run_python.sh
with
12 additions
and
3 deletions
setup.py
+
6
−
1
View file @
68a94c8f
...
@@ -108,8 +108,13 @@ if "linux" in sys.platform or "darwin" in sys.platform:
...
@@ -108,8 +108,13 @@ if "linux" in sys.platform or "darwin" in sys.platform:
def
cython_extensions
(
package_names
,
module_names
,
extra_sources
,
include_dirs
,
def
cython_extensions
(
package_names
,
module_names
,
extra_sources
,
include_dirs
,
libraries
,
define_macros
,
build_with_cython
=
False
):
libraries
,
define_macros
,
build_with_cython
=
False
):
# Set compiler directives linetrace argument only if we care about tracing;
# this is due to Cython having different behavior between linetrace being
# False and linetrace being unset. See issue #5689.
cython_compiler_directives
=
{}
if
ENABLE_CYTHON_TRACING
:
if
ENABLE_CYTHON_TRACING
:
define_macros
=
define_macros
+
[(
'
CYTHON_TRACE_NOGIL
'
,
1
)]
define_macros
=
define_macros
+
[(
'
CYTHON_TRACE_NOGIL
'
,
1
)]
cython_compiler_directives
[
'
linetrace
'
]
=
True
file_extension
=
'
pyx
'
if
build_with_cython
else
'
c
'
file_extension
=
'
pyx
'
if
build_with_cython
else
'
c
'
module_files
=
[
os
.
path
.
join
(
PYTHON_STEM
,
module_files
=
[
os
.
path
.
join
(
PYTHON_STEM
,
name
.
replace
(
'
.
'
,
'
/
'
)
+
'
.
'
+
file_extension
)
name
.
replace
(
'
.
'
,
'
/
'
)
+
'
.
'
+
file_extension
)
...
@@ -129,7 +134,7 @@ def cython_extensions(package_names, module_names, extra_sources, include_dirs,
...
@@ -129,7 +134,7 @@ def cython_extensions(package_names, module_names, extra_sources, include_dirs,
return
Cython
.
Build
.
cythonize
(
return
Cython
.
Build
.
cythonize
(
extensions
,
extensions
,
include_path
=
include_dirs
,
include_path
=
include_dirs
,
compiler_directives
=
{
'
linetrace
'
:
bool
(
ENABLE_CYTHON_TRACING
)}
)
compiler_directives
=
cython_compiler_directives
)
else
:
else
:
return
extensions
return
extensions
...
...
This diff is collapsed.
Click to expand it.
tools/run_tests/build_python.sh
+
5
−
1
View file @
68a94c8f
...
@@ -40,7 +40,11 @@ export PATH=$ROOT/bins/$CONFIG:$ROOT/bins/$CONFIG/protobuf:$PATH
...
@@ -40,7 +40,11 @@ export PATH=$ROOT/bins/$CONFIG:$ROOT/bins/$CONFIG/protobuf:$PATH
export
CFLAGS
=
"-I
$ROOT
/include -std=gnu99"
export
CFLAGS
=
"-I
$ROOT
/include -std=gnu99"
export
LDFLAGS
=
"-L
$ROOT
/libs/
$CONFIG
"
export
LDFLAGS
=
"-L
$ROOT
/libs/
$CONFIG
"
export
GRPC_PYTHON_BUILD_WITH_CYTHON
=
1
export
GRPC_PYTHON_BUILD_WITH_CYTHON
=
1
export
GRPC_PYTHON_ENABLE_CYTHON_TRACING
=
1
if
[
"
$CONFIG
"
=
"gcov"
]
then
export
GRPC_PYTHON_ENABLE_CYTHON_TRACING
=
1
fi
tox
--notest
tox
--notest
...
...
This diff is collapsed.
Click to expand it.
tools/run_tests/run_python.sh
+
1
−
1
View file @
68a94c8f
...
@@ -40,10 +40,10 @@ export PATH=$ROOT/bins/$CONFIG:$ROOT/bins/$CONFIG/protobuf:$PATH
...
@@ -40,10 +40,10 @@ export PATH=$ROOT/bins/$CONFIG:$ROOT/bins/$CONFIG/protobuf:$PATH
export
CFLAGS
=
"-I
$ROOT
/include -std=c89"
export
CFLAGS
=
"-I
$ROOT
/include -std=c89"
export
LDFLAGS
=
"-L
$ROOT
/libs/
$CONFIG
"
export
LDFLAGS
=
"-L
$ROOT
/libs/
$CONFIG
"
export
GRPC_PYTHON_BUILD_WITH_CYTHON
=
1
export
GRPC_PYTHON_BUILD_WITH_CYTHON
=
1
export
GRPC_PYTHON_ENABLE_CYTHON_TRACING
=
1
if
[
"
$CONFIG
"
=
"gcov"
]
if
[
"
$CONFIG
"
=
"gcov"
]
then
then
export
GRPC_PYTHON_ENABLE_CYTHON_TRACING
=
1
tox
tox
else
else
$ROOT
/.tox/py27/bin/python
$ROOT
/setup.py test_lite
$ROOT
/.tox/py27/bin/python
$ROOT
/setup.py test_lite
...
...
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