]> granicus.if.org Git - python/commitdiff
test_gdb: oops, the regex to parse the gdb version was still too strict
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 3 Sep 2015 13:42:26 +0000 (15:42 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 3 Sep 2015 13:42:26 +0000 (15:42 +0200)
Lib/test/test_gdb.py

index 5059fb43a44df25fdbe2170b8a47bd84ff233490..915c90cc69f8dbc370b95a48e240a98b2bcb9d5d 100644 (file)
@@ -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)))