Commit 83737ed9 authored by Stefan Behnel's avatar Stefan Behnel

GH-1461: Include the signature line of cdef functions in the import-time line...

GH-1461: Include the signature line of cdef functions in the import-time line tracing and coverage report.
parent 060e9090
......@@ -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)
===================
......
......@@ -2653,6 +2653,9 @@ class CFuncDefNode(FuncDefNode):
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)
......
......@@ -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
......@@ -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()
......@@ -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()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment