Commit 64bc49f4 authored by Robert Bradshaw's avatar Robert Bradshaw

Another gdb test fix.

--HG--
extra : transplant_source : %E1%3AR%19%8F%A3%8D%95%A1U%10%09%9B%90%FEZ%28p%9C%2C
parent 4d4f7785
......@@ -61,7 +61,10 @@ def test_gdb():
stdout=subprocess.PIPE)
python_version = p.stdout.read().decode('ascii')
p.wait()
python_version_number = list(map(int, python_version.split()))
try:
python_version_number = list(map(int, python_version.split()))
except ValueError:
have_gdb = False
# Be Python 3 compatible
if (not have_gdb
......
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