summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-06-11 13:48:03 (GMT)
committerGitHub <noreply@github.com>2020-06-11 13:48:03 (GMT)
commitb2dca49ca3769cb60713f5c2b43e5d5bbdc1f9c7 (patch)
tree5eb32b784c06119e4ccc220d629d95a704eaf31f /Misc
parent9727694f08cad4b019d2939224e3416312b1c0e1 (diff)
downloadcpython-b2dca49ca3769cb60713f5c2b43e5d5bbdc1f9c7.zip
cpython-b2dca49ca3769cb60713f5c2b43e5d5bbdc1f9c7.tar.gz
cpython-b2dca49ca3769cb60713f5c2b43e5d5bbdc1f9c7.tar.bz2
bpo-34401: Fix test_gdb for HP GDB version string (GH-20804)
The GDB provided by HPE on HP-UX contains a modified version string. Therefore the tests fail. Adapt the regex to match that string. Patch by Michael Osipov. Co-Authored-by: Michael Osipov <michael.osipov@siemens.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2018-08-20-09-38-52.bpo-34401.eGxMPm.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2018-08-20-09-38-52.bpo-34401.eGxMPm.rst b/Misc/NEWS.d/next/Tests/2018-08-20-09-38-52.bpo-34401.eGxMPm.rst
new file mode 100644
index 0000000..1b28d94
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2018-08-20-09-38-52.bpo-34401.eGxMPm.rst
@@ -0,0 +1 @@
+Make test_gdb properly run on HP-UX. Patch by Michael Osipov.