summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gdb.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-12-04 15:23:56 (GMT)
committerGitHub <noreply@github.com>2020-12-04 15:23:56 (GMT)
commit066394018a8463643cc63d933493f0afa99d72cc (patch)
tree26f57c2e6db075f60f520279282e3927f5f65e8b /Lib/test/test_gdb.py
parenteaccc12aa986f92ea05f3f0a63cedbff78dd67f1 (diff)
downloadcpython-066394018a8463643cc63d933493f0afa99d72cc.zip
cpython-066394018a8463643cc63d933493f0afa99d72cc.tar.gz
cpython-066394018a8463643cc63d933493f0afa99d72cc.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).
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r--Lib/test/test_gdb.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index 44cb9a0..22c75ba 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.")