Skip to content

Commit

Permalink
Merge pull request cython#2871 from cython/gh1461_cover_sig_line
Browse files Browse the repository at this point in the history
cythonGH-1461: Include the signature line of cdef functions in the import-time line tracing and coverage report.
  • Loading branch information
scoder authored Mar 1, 2019
2 parents 060e909 + 83737ed commit 02c019e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 21 deletions.
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Cython Changelog
================

0.29.7 (2019-0?-??)
===================

Bugs fixed
----------

* Coverage reporting did not include the signature line of ``cdef`` functions.
(Github issue #1461)


0.29.6 (2019-02-27)
===================

Expand Down
3 changes: 3 additions & 0 deletions Cython/Compiler/Nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2653,6 +2653,9 @@ def generate_argument_type_tests(self, code):
self.generate_arg_none_check(arg, code)

def generate_execution_code(self, code):
if code.globalstate.directives['linetrace']:
code.mark_pos(self.pos)
code.putln("") # generate line tracing code
super(CFuncDefNode, self).generate_execution_code(code)
if self.py_func_stat:
self.py_func_stat.generate_execution_code(code)
Expand Down
40 changes: 19 additions & 21 deletions tests/run/coverage_nogil.srctree
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ plugins = Cython.Coverage
# cython: linetrace=True
# distutils: define_macros=CYTHON_TRACE=1 CYTHON_TRACE_NOGIL=1

cdef int func1(int a, int b) nogil:
cdef int x # 5
with gil: # 6
x = 1 # 7
cdef int c = func2(a) + b # 8
return x + c # 9
cdef int func1(int a, int b) nogil: # 4
cdef int x # 5
with gil: # 6
x = 1 # 7
cdef int c = func2(a) + b # 8
return x + c # 9


cdef int func2(int a) with gil:
cdef int func2(int a) with gil: # 12
return a * 2 # 13


def call(int a, int b):
def call(int a, int b): # 16
a, b = b, a # 17
with nogil: # 18
result = func1(b, a) # 19
Expand All @@ -56,20 +56,18 @@ except ImportError:
from coverage import coverage


import coverage_test_nogil

assert not any(coverage_test_nogil.__file__.endswith(ext)
for ext in '.py .pyc .pyo .pyw .pyx .pxi'.split()), \
coverage_test_nogil.__file__

def run_coverage():
cov = coverage()
cov.start()

def run_coverage(module):
import coverage_test_nogil as module
module_name = module.__name__
module_path = module_name + '.pyx'

cov = coverage()
cov.start()
assert not any(module.__file__.endswith(ext)
for ext in '.py .pyc .pyo .pyw .pyx .pxi'.split()), \
module.__file__
assert module.call(1, 2) == (1 * 2) + 2 + 1

cov.stop()

out = StringIO()
Expand All @@ -84,10 +82,10 @@ def run_coverage(module):

executed = set(exec_lines) - set(missing_lines)
# check that everything that runs with the gil owned was executed
assert all(line in executed for line in [13, 17, 18, 20]), '%s / %s' % (exec_lines, missing_lines)
assert all(line in executed for line in [12, 13, 16, 17, 18, 20]), '%s / %s' % (exec_lines, missing_lines)
# check that everything that runs in nogil sections was executed
assert all(line in executed for line in [6, 7, 8, 9]), '%s / %s' % (exec_lines, missing_lines)
assert all(line in executed for line in [4, 6, 7, 8, 9]), '%s / %s' % (exec_lines, missing_lines)


if __name__ == '__main__':
run_coverage(coverage_test_nogil)
run_coverage()

0 comments on commit 02c019e

Please sign in to comment.