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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
d8647256
Commit
d8647256
authored
Jan 24, 2011
by
Mark Florisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Debugger: Don't run test suite if GDB python version < 2.6
parent
5a501ae5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
Cython/Debugger/Tests/TestLibCython.py
Cython/Debugger/Tests/TestLibCython.py
+7
-5
No files found.
Cython/Debugger/Tests/TestLibCython.py
View file @
d8647256
...
@@ -167,14 +167,15 @@ class GdbDebuggerTestCase(DebuggerTestCase):
...
@@ -167,14 +167,15 @@ class GdbDebuggerTestCase(DebuggerTestCase):
p
.
stdout
.
close
()
p
.
stdout
.
close
()
if
have_gdb
:
if
have_gdb
:
python_version_script
=
tempfile
.
NamedTemporaryFile
()
python_version_script
=
tempfile
.
NamedTemporaryFile
(
mode
=
'w+'
)
python_version_script
.
write
(
'python import sys; print sys.version_info
\
n
'
)
python_version_script
.
write
(
'python import sys; print("%s %s" % sys.version_info[:2])'
)
python_version_script
.
flush
()
python_version_script
.
flush
()
p
=
subprocess
.
Popen
([
'gdb'
,
'-batch'
,
'-x'
,
python_version_script
.
name
],
p
=
subprocess
.
Popen
([
'gdb'
,
'-batch'
,
'-x'
,
python_version_script
.
name
],
stdout
=
subprocess
.
PIPE
)
stdout
=
subprocess
.
PIPE
)
python_version
=
p
.
stdout
.
read
().
decode
(
'ascii'
)
python_version
=
p
.
stdout
.
read
().
decode
(
'ascii'
)
p
.
wait
()
p
.
wait
()
python_version_number
=
[
int
(
a
.
strip
())
for
a
in
python_version
.
strip
(
'()'
).
split
(
','
)[:
3
]
]
python_version_number
=
[
int
(
a
)
for
a
in
python_version
.
split
()
]
if
have_gdb
:
if
have_gdb
:
# Based on Lib/test/test_gdb.py
# Based on Lib/test/test_gdb.py
...
@@ -184,9 +185,10 @@ class GdbDebuggerTestCase(DebuggerTestCase):
...
@@ -184,9 +185,10 @@ class GdbDebuggerTestCase(DebuggerTestCase):
# Be Python 3 compatible
# Be Python 3 compatible
if
(
not
have_gdb
if
(
not
have_gdb
or
list
(
map
(
int
,
gdb_version_number
))
<
[
7
,
2
]
or
list
(
map
(
int
,
gdb_version_number
))
<
[
7
,
2
]
or
python_version_number
<
[
2
,
5
]):
or
python_version_number
<
[
2
,
6
]):
self
.
p
=
None
self
.
p
=
None
warnings
.
warn
(
'Skipping gdb tests, need gdb >= 7.2 with Python >= 2.5'
)
warnings
.
warn
(
'Skipping gdb tests, need gdb >= 7.2 with Python >= 2.6'
)
else
:
else
:
self
.
p
=
subprocess
.
Popen
(
self
.
p
=
subprocess
.
Popen
(
args
,
args
,
...
...
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