Automatic date update in version.in
[binutils-gdb/blckswan.git] / gdb / testsuite / gdb.multi / tids-gid-reset.exp
blob6cab573a1f83a4aeaf2598ffdc884aaa4237a02f
1 # Copyright 2015-2022 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 # Check that letting the inferior exit and restarting it again resets
17 # the global TID counter, and thus the new thread 1.1 should end up
18 # with global TID == 1.
20 # Also, check the same but with another inferior still running, in
21 # which case the new thread 1.1 should end up with global TID == 3.
23 standard_testfile
25 if { [build_executable "failed to prepare" ${testfile} ${srcfile} \
26 {pthreads debug}] } {
27 return -1
30 with_test_prefix "single-inferior" {
31 with_test_prefix "before restart" {
32 clean_restart ${testfile}
34 if { ![runto_main] } then {
35 return -1
38 gdb_test "info threads -gid" "\\* 1 +1 +.*"
41 with_test_prefix "restart" {
42 gdb_continue_to_end
43 if { ![runto_main] } then {
44 return -1
48 with_test_prefix "after restart" {
49 gdb_test "info threads -gid" "\\* 1 +1 +.*"
53 # For the following tests, multiple inferiors are needed, therefore
54 # non-extended gdbserver is not supported.
55 if [use_gdb_stub] {
56 untested "using gdb stub"
57 return
60 # Test with multiple inferiors. This time, since we restart inferior
61 # 1 while inferior 2 still has threads, then the new thread 1.1 should
62 # end up with GID == 3, since we won't be able to reset the global
63 # thread ID counter.
64 with_test_prefix "multi-inferior" {
65 gdb_test "add-inferior" "Added inferior 2.*" "add empty inferior 2"
66 gdb_test "inferior 2" "Switching to inferior 2 .*" "switch to inferior 2"
67 gdb_load ${binfile}
69 if ![runto_main] then {
70 return
73 gdb_test "inferior 1" "Switching to inferior 1 .*" \
74 "switch back to inferior 1"
76 with_test_prefix "before restart" {
77 gdb_test "info threads -gid" \
78 [multi_line \
79 "\\* 1\.1 +1 +.*" \
80 " 2\.1 +2 +.*"]
83 with_test_prefix "restart" {
84 gdb_continue_to_end
85 if { ![runto_main] } then {
86 return -1
90 with_test_prefix "after restart" {
91 gdb_test "info threads -gid" \
92 [multi_line \
93 "\\* 1\.1 +3 +.*" \
94 " 2\.1 +2 +.*"]