We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc98a54 commit 87bc220Copy full SHA for 87bc220
Lib/test/test_gdb.py
@@ -51,6 +51,11 @@ def get_gdb_version():
51
"embedding. Saw %s.%s:\n%s"
52
% (gdb_major_version, gdb_minor_version,
53
gdb_version))
54
+if (gdb_major_version, gdb_minor_version) >= (9, 2):
55
+ # gdb 9.2 on Fedora Rawhide is not reliable, see:
56
+ # * https://bugs.python.org/issue41473
57
+ # * https://bugzilla.redhat.com/show_bug.cgi?id=1866884
58
+ raise unittest.SkipTest("https://bugzilla.redhat.com/show_bug.cgi?id=1866884")
59
60
if not sysconfig.is_python_build():
61
raise unittest.SkipTest("test_gdb only works on source builds at the moment.")
0 commit comments