diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-03 13:42:26 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-03 13:42:26 (GMT) |
commit | 479fea63e1b321a8fe47af1bb62e87f47b6c45c0 (patch) | |
tree | 783d8ad3b9ce4f8a05bdf2aeea86ddd72b18ce2e /Lib | |
parent | a7b76e0cbea0a3a9e1f21029c2b219d87b98dcb3 (diff) | |
download | cpython-479fea63e1b321a8fe47af1bb62e87f47b6c45c0.zip cpython-479fea63e1b321a8fe47af1bb62e87f47b6c45c0.tar.gz cpython-479fea63e1b321a8fe47af1bb62e87f47b6c45c0.tar.bz2 |
test_gdb: oops, the regex to parse the gdb version was still too strict
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_gdb.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 5059fb4..915c90c 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -36,8 +36,9 @@ def get_gdb_version(): # Regex to parse: # 'GNU gdb (GDB; SUSE Linux Enterprise 12) 7.7\n' -> 7.7 # 'GNU gdb (GDB) Fedora 7.9.1-17.fc22\n' -> 7.9 - # 'GNU gdb 6.1.1 [FreeBSD]\n' - match = re.search("^GNU gdb.*? (\d+)\.(\d)", version) + # 'GNU gdb 6.1.1 [FreeBSD]\n' -> 6.1 + # 'GNU gdb (GDB) Fedora (7.5.1-37.fc18)\n' -> 7.5 + match = re.search(r"^GNU gdb.*?\b(\d+)\.(\d)", version) if match is None: raise Exception("unable to parse GDB version: %r" % version) return (version, int(match.group(1)), int(match.group(2))) |