Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
615282f7
Commit
615282f7
authored
Aug 04, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test runner: enable cygdb support for --debug option
parent
fd6380ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
runtests.py
runtests.py
+5
-1
No files found.
runtests.py
View file @
615282f7
...
...
@@ -1492,7 +1492,7 @@ def main():
Options
.
generate_cleanup_code
=
3
# complete cleanup code
from
Cython.Compiler
import
DebugFlags
DebugFlags
.
debug_temp_code_comments
=
1
if
options
.
shard_count
>
1
and
options
.
shard_num
==
-
1
:
import
multiprocessing
pool
=
multiprocessing
.
Pool
(
options
.
shard_count
)
...
...
@@ -1560,6 +1560,10 @@ def runtests(options, cmd_args, coverage=None):
options
.
cleanup_workdir
=
False
options
.
cleanup_sharedlibs
=
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
:
from
pyximport.pyxbuild
import
pyx_to_dll
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment