summarylogtreecommitdiffstats
path: root/test_gdb-version-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'test_gdb-version-fix.patch')
-rw-r--r--test_gdb-version-fix.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/test_gdb-version-fix.patch b/test_gdb-version-fix.patch
deleted file mode 100644
index ed1ddbea5923..000000000000
--- a/test_gdb-version-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/Lib/test/test_gdb.py 2015-09-14 11:58:09.218811556 +0800
-+++ b/Lib/test/test_gdb.py 2015-09-14 11:58:24.845647558 +0800
-@@ -28,7 +28,7 @@
- # 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_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))
- if gdb_major_version < 7: