Automatic date update in version.in
[binutils-gdb.git] / gdb / testsuite / gdb.btrace / unknown_functions.exp
blobb335e74c87a9829bc1e6d28fa0b1bd3423fddd57
1 # This testcase is part of GDB, the GNU debugger.
3 # Copyright 2013-2024 Free Software Foundation, Inc.
5 # Contributed by Intel Corp. <markus.t.metzger@intel.com>
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 require allow_btrace_tests
22 standard_testfile
24 # We expect a specific function call history.  This gets messed up with
25 # PIE on 32-bit.
27 # Also discard local symbols.
28 if [prepare_for_testing "failed to prepare" $testfile $srcfile \
29         {ldflags=-Wl,-x nopie}] {
30     return -1
33 if ![runto test] {
34     return -1
37 # we want to see the full trace for this test
38 gdb_test_no_output "set record function-call-history-size 0"
40 # trace from one call of test to the next
41 gdb_test_no_output "record btrace"
42 gdb_continue_to_breakpoint "cont to test" ".*test.*"
44 # show the flat branch trace
45 gdb_test "record function-call-history 1" [multi_line \
46   "1\ttest" \
47   "2\t\\\?\\\?" \
48   "3\t\\\?\\\?" \
49   "4\t\\\?\\\?" \
50   "5\ttest" \
51   "6\tmain" \
52   "7\ttest" \
53   ] "flat"
55 # show the branch trace with calls indented
56 gdb_test "record function-call-history /c 1" [multi_line \
57   "1\t  test" \
58   "2\t    \\\?\\\?" \
59   "3\t      \\\?\\\?" \
60   "4\t    \\\?\\\?" \
61   "5\t  test" \
62   "6\tmain" \
63   "7\t  test" \
64   ] "indented"