1 # Copyright (C) 2016-2023 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 # This file is part of the GDB testsuite. It is used to verify that
17 # GDB does not recurse infinitely when calling gdb.parse_and_eval() in
18 # the course of sniffing a frame in a Python unwinder.
20 # The unwinder has been constructed so that, should recursion occur,
21 # it will be detected in the unwinder so that we won't need to wait
25 load_lib gdb-python.exp
29 if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
33 # Skip all tests if Python scripting is not enabled.
34 if { [skip_python_tests] } { continue }
36 set pyfile [gdb_remote_download host ${srcdir}/${subdir}/${testfile}.py]
38 gdb_test "source ${pyfile}" "Python script imported" \
39 "import python scripts"
41 # The following tests require execution.
48 proc cont_and_backtrace { tst } {
50 with_test_prefix $tst {
53 # We're testing different code paths within the unwinder's sniffer.
54 # Set the current path to be tested here.
55 gdb_test_no_output "python TestUnwinder.set_test(\"$tst\")" \
56 "set code path within python unwinder to $tst"
58 # If the unwinder is active, the usage count will increment while
59 # running to the breakpoint. Reset it prior to doing the backtrace.
60 gdb_test_no_output "python TestUnwinder.reset_count()" \
63 gdb_continue_to_breakpoint "ccc"
65 # The python based unwinder should be called a number of times while
66 # generating the backtrace, but its sniffer always returns None. So
67 # it doesn't really contribute to generating any of the frames below.
69 # But that's okay. Our goal here is to make sure that GDB doesn't
70 # get hung up in potentially infinite recursion when invoking the
71 # Python-based unwinder.
73 gdb_test_sequence "bt" "backtrace" {
74 "\\r\\n#0 .* ccc \\(arg=789\\) at "
75 "\\r\\n#1 .* bbb \\(arg=456\\) at "
76 "\\r\\n#2 .* aaa \\(arg=123\\) at "
77 "\\r\\n#3 .* main \\(.*\\) at"
80 # Test that the python-based unwinder / sniffer was actually called
81 # during generation of the backtrace.
82 gdb_test "python print(TestUnwinder.count > 0)" "True" \
83 "python unwinder called"
87 cont_and_backtrace "check_undefined_symbol"
88 cont_and_backtrace "check_user_reg_pc"
89 cont_and_backtrace "check_pae_pc"