Update copyright year range in header of all files managed by GDB
[binutils-gdb.git] / gdb / testsuite / gdb.btrace / enable-new-thread.exp
blobfb6b9ca3dd2970bc45865075b576f99c9f19fada
1 # This testcase is part of GDB, the GNU debugger.
3 # Copyright 2020-2023 Free Software Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 # Test that new threads of recorded inferiors also get recorded.
20 if { [skip_btrace_tests] } {
21     unsupported "target does not support record-btrace"
22     return -1
25 standard_testfile
26 if [prepare_for_testing "failed to prepare" $testfile $srcfile {debug pthreads}] {
27     return -1
30 if ![runto_main] {
31     return -1
34 # Record the main thread.  Recording will automatically be enabled for the
35 # other thread.
36 gdb_test "record btrace"
38 gdb_breakpoint [gdb_get_line_number "bp.1" $srcfile]
39 gdb_continue_to_breakpoint "cont to bp.1" ".*/\\* bp\.1 \\*/.*"
41 proc check_thread_recorded { num } {
42     global decimal
44     with_test_prefix "thread $num" {
45         gdb_test "thread $num" "Switching to thread $num.*"
47         gdb_test "info record" [multi_line \
48             "Active record target: record-btrace" \
49             ".*" \
50             "Recorded $decimal instructions in $decimal functions \[^\\\r\\\n\]*" \
51        ]
52     }
55 check_thread_recorded 1
56 check_thread_recorded 2