[Python-checkins] cpython: test_gdb: add debug info to investigate failure on "s390x SLES 3.x" buildbot

victor.stinner python-checkins at python.org
Wed Sep 2 15:45:00 CEST 2015


https://hg.python.org/cpython/rev/ba4346a83019
changeset:   97580:ba4346a83019
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Sep 02 15:44:22 2015 +0200
summary:
  test_gdb: add debug info to investigate failure on "s390x SLES 3.x" buildbot

files:
  Lib/test/test_gdb.py |  10 +++++++---
  1 files changed, 7 insertions(+), 3 deletions(-)


diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -28,9 +28,13 @@
     # This is what "no gdb" looks like.  There may, however, be other
     # errors that manifest this way too.
     raise unittest.SkipTest("Couldn't find gdb on the path")
-gdb_version_number = re.search(b"^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version)
-gdb_major_version = int(gdb_version_number.group(1))
-gdb_minor_version = int(gdb_version_number.group(2))
+try:
+    gdb_version_number = re.search(b"^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version)
+    gdb_major_version = int(gdb_version_number.group(1))
+    gdb_minor_version = int(gdb_version_number.group(2))
+except Exception:
+    raise ValueError("unable to parse GDB version: %r" % gdb_version)
+
 if gdb_major_version < 7:
     raise unittest.SkipTest("gdb versions before 7.0 didn't support python embedding"
                             " Saw:\n" + gdb_version.decode('ascii', 'replace'))

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list