From: Victor Stinner Date: Wed, 2 Sep 2015 13:44:22 +0000 (+0200) Subject: test_gdb: add debug info to investigate failure on "s390x SLES 3.x" buildbot X-Git-Tag: v3.6.0a1~1704 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6dad8f89623e588f486d069b7a336c1430c3c147;p=thirdparty%2FPython%2Fcpython.git test_gdb: add debug info to investigate failure on "s390x SLES 3.x" buildbot --- diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 0322677793a5..193c97afa354 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -28,9 +28,13 @@ except OSError: # 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'))