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 logs "Function ... not defined" messages
Type: Stage: resolved
Components: Tests Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: lukasz.langa, miss-islington, vstinner
Priority: normal Keywords: patch

Created on 2021-09-15 13:24 by vstinner, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 28355 merged vstinner, 2021-09-15 15:47
PR 28365 merged miss-islington, 2021-09-15 18:21
PR 28366 merged miss-islington, 2021-09-15 18:21
Messages (5)
msg401835 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-09-15 13:24
test_gdb logs many messages. I would prefer a quiet output:

0:02:05 load avg: 11.65 [155/427] test_gdb passed (...)
Function "meth_varargs" not defined.
Function "meth_varargs" not defined.
Function "meth_varargs" not defined.
Function "meth_varargs" not defined.
Function "meth_varargs" not defined.
Function "meth_varargs" not defined.
Function "meth_varargs" not defined.
Function "meth_varargs" not defined.
Function "meth_varargs_keywords" not defined.
Function "meth_varargs_keywords" not defined.
Function "meth_varargs_keywords" not defined.
Function "meth_varargs_keywords" not defined.
Function "meth_varargs_keywords" not defined.
Function "meth_varargs_keywords" not defined.
Function "meth_varargs_keywords" not defined.
Function "meth_varargs_keywords" not defined.
Function "meth_o" not defined.
Function "meth_o" not defined.
Function "meth_o" not defined.
Function "meth_o" not defined.
Function "meth_o" not defined.
Function "meth_o" not defined.
Function "meth_o" not defined.
Function "meth_o" not defined.
Function "meth_noargs" not defined.
Function "meth_noargs" not defined.
Function "meth_noargs" not defined.
Function "meth_noargs" not defined.
Function "meth_noargs" not defined.
Function "meth_noargs" not defined.
Function "meth_noargs" not defined.
Function "meth_noargs" not defined.
Function "meth_fastcall" not defined.
Function "meth_fastcall" not defined.
Function "meth_fastcall" not defined.
Function "meth_fastcall" not defined.
Function "meth_fastcall" not defined.
Function "meth_fastcall" not defined.
Function "meth_fastcall" not defined.
Function "meth_fastcall" not defined.
Function "meth_fastcall_keywords" not defined.
Function "meth_fastcall_keywords" not defined.
Function "meth_fastcall_keywords" not defined.
Function "meth_fastcall_keywords" not defined.
Function "meth_fastcall_keywords" not defined.
Function "meth_fastcall_keywords" not defined.
Function "meth_fastcall_keywords" not defined.
Function "meth_fastcall_keywords" not defined.
msg401874 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-09-15 18:21
New changeset 84a6061e29e9dc13909bdf6f541f48c2a4f1d410 by Victor Stinner in branch 'main':
bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355)
https://github.com/python/cpython/commit/84a6061e29e9dc13909bdf6f541f48c2a4f1d410
msg401889 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-09-15 19:10
New changeset bbaf5c27e659cf372c34a6fe7ca31a2f5cb20a50 by Miss Islington (bot) in branch '3.10':
bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355) (GH-28365)
https://github.com/python/cpython/commit/bbaf5c27e659cf372c34a6fe7ca31a2f5cb20a50
msg401890 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-09-15 19:11
New changeset 1c70efcbb57ab4eb65ca604b39606fceff6db4f5 by Miss Islington (bot) in branch '3.9':
bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355) (GH-28366)
https://github.com/python/cpython/commit/1c70efcbb57ab4eb65ca604b39606fceff6db4f5
msg401891 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-09-15 19:12
Thanks, Victor! ✨ 🍰 ✨
History
Date User Action Args
2022-04-11 14:59:50adminsetgithub: 89370
2021-09-15 19:12:03lukasz.langasetstatus: open -> closed
resolution: fixed
messages: + msg401891

stage: patch review -> resolved
2021-09-15 19:11:25lukasz.langasetmessages: + msg401890
2021-09-15 19:10:37lukasz.langasetmessages: + msg401889
2021-09-15 18:21:18miss-islingtonsetpull_requests: + pull_request26780
2021-09-15 18:21:14miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request26779
2021-09-15 18:21:09lukasz.langasetnosy: + lukasz.langa
messages: + msg401874
2021-09-15 15:47:52vstinnersetversions: + Python 3.9, Python 3.10
2021-09-15 15:47:47vstinnersetkeywords: + patch
stage: patch review
pull_requests: + pull_request26769
2021-09-15 13:24:16vstinnercreate