diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-12-04 15:41:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 15:41:02 (GMT) |
commit | 8e8f82dd9459b9f62c21480528d737cffd6146bc (patch) | |
tree | c35ac6834011858a8fb7aeab68fac0f919aff7f9 | |
parent | 930d5377c5877a631c3c23929e2cb6211bb0e2fb (diff) | |
download | cpython-8e8f82dd9459b9f62c21480528d737cffd6146bc.zip cpython-8e8f82dd9459b9f62c21480528d737cffd6146bc.tar.gz cpython-8e8f82dd9459b9f62c21480528d737cffd6146bc.tar.bz2 |
bpo-41473: Reenable test_gdb on gdb 9.2 and newer (GH-23637)
https://bugzilla.redhat.com/show_bug.cgi?id=1866884 is fixed in gdb
10.1 (failed to reproduce on gdb-10.1-1.fc34.aarch64).
(cherry picked from commit 066394018a8463643cc63d933493f0afa99d72cc)
Co-authored-by: Victor Stinner <vstinner@python.org>
-rw-r--r-- | Lib/test/test_gdb.py | 5 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Tests/2020-12-04-11-47-09.bpo-41473.W_updK.rst | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 01a48af..d90ca5a 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -51,11 +51,6 @@ if gdb_major_version < 7: "embedding. Saw %s.%s:\n%s" % (gdb_major_version, gdb_minor_version, gdb_version)) -if (gdb_major_version, gdb_minor_version) >= (9, 2): - # gdb 9.2 on Fedora Rawhide is not reliable, see: - # * https://bugs.python.org/issue41473 - # * https://bugzilla.redhat.com/show_bug.cgi?id=1866884 - raise unittest.SkipTest("https://bugzilla.redhat.com/show_bug.cgi?id=1866884") if not sysconfig.is_python_build(): raise unittest.SkipTest("test_gdb only works on source builds at the moment.") diff --git a/Misc/NEWS.d/next/Tests/2020-12-04-11-47-09.bpo-41473.W_updK.rst b/Misc/NEWS.d/next/Tests/2020-12-04-11-47-09.bpo-41473.W_updK.rst new file mode 100644 index 0000000..9e0a375 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2020-12-04-11-47-09.bpo-41473.W_updK.rst @@ -0,0 +1,3 @@ +Reenable test_gdb on gdb 9.2 and newer: +https://bugzilla.redhat.com/show_bug.cgi?id=1866884 bug is fixed in gdb +10.1. |