Commit 615282f7 authored by Stefan Behnel's avatar Stefan Behnel

test runner: enable cygdb support for --debug option

parent fd6380ab
...@@ -1560,6 +1560,10 @@ def runtests(options, cmd_args, coverage=None): ...@@ -1560,6 +1560,10 @@ def runtests(options, cmd_args, coverage=None):
options.cleanup_workdir = False options.cleanup_workdir = False
options.cleanup_sharedlibs = False options.cleanup_sharedlibs = False
options.fork = False options.fork = False
if WITH_CYTHON:
from Cython.Compiler.Main import default_options as compiler_default_options
compiler_default_options['gdb_debug'] = True
compiler_default_options['output_dir'] = os.getcwd()
if options.with_refnanny: if options.with_refnanny:
from pyximport.pyxbuild import pyx_to_dll from pyximport.pyxbuild import pyx_to_dll
......
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