10000 bpo-41473: Reenable test_gdb on gdb 9.2 and newer by vstinner · Pull Request #23637 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-41473: Reenable test_gdb on gdb 9.2 and newer #23637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions Lib/test/test_gdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ def get_gdb_version():
"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.")
Expand Down
44EF
Original file line number Diff line number Diff line change
@@ -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.
0