mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
gh-110166: Fix gdb CFunctionFullTests on ppc64le clang build (#110331)
CFunctionFullTests now also runs "bt" command before "py-bt-full", similar to CFunctionTests which also runs "bt" command before "py-bt". So test_gdb can skip the test if patterns like "?? ()" are found in the gdb output.
This commit is contained in:
parent
1465386720
commit
1de9406f91
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class CFunctionFullTests(CFunctionTests):
|
||||||
gdb_output = self.get_stack_trace(
|
gdb_output = self.get_stack_trace(
|
||||||
cmd,
|
cmd,
|
||||||
breakpoint=func_name,
|
breakpoint=func_name,
|
||||||
cmds_after_breakpoint=['py-bt-full'],
|
cmds_after_breakpoint=['bt', 'py-bt-full'],
|
||||||
# bpo-45207: Ignore 'Function "meth_varargs" not
|
# bpo-45207: Ignore 'Function "meth_varargs" not
|
||||||
# defined.' message in stderr.
|
# defined.' message in stderr.
|
||||||
ignore_stderr=True,
|
ignore_stderr=True,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue