This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_gdb failed to read version for gdb >= 7.10
Type: behavior Stage:
Components: Tests Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: felixonmars, vstinner
Priority: normal Keywords: patch

Created on 2015-09-14 04:06 by felixonmars, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_gdb-version-fix.patch felixonmars, 2015-09-14 04:06 Patch to fix the regex
Messages (2)
msg250608 - (view) Author: Felix Yan (felixonmars) * Date: 2015-09-14 04:06
The regex in test_gdb reads only one digit of gdb's minor version, which would fail for gdb >= 7.10, and skip the test as 7.1 < 7.4.

Original commit: https://hg.python.org/cpython/rev/b71cda2f48c6#l1.9

Patch attached.
msg250711 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2015-09-14 22:27
Fixed by changesets 21d6b2752fe8 (2.7) and 6a8aa246485e (3.4). Thanks for your bug report and your patch!
History
Date User Action Args
2022-04-11 14:58:20adminsetgithub: 69283
2015-09-14 22:27:29vstinnersetstatus: open -> closed

nosy: + vstinner
messages: + msg250711

resolution: fixed
2015-09-14 04:06:25felixonmarscreate