summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.threads/tid-reuse.exp
blob: 591373892a0400e7e1d03b340d672aba0d94589b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Copyright 2015-2018 Free Software Foundation, Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Test running a program that spawns enough threads that the tid of an
# exited thread is reused.  GDB should not crash when this happens.

standard_testfile

if {[prepare_for_testing "failed to prepare" $testfile $srcfile { debug pthreads }] == -1} {
    return -1
}

clean_restart ${binfile}

if ![runto main] {
    fail "can't run to main"
    return -1
}

delete_breakpoints

# Avoid dumping a ton of thread create/exit info in the logs.
gdb_test_no_output "set print thread-events off"

gdb_breakpoint "after_count"
gdb_continue_to_breakpoint "after_count"

# Get value of VARIABLE in the inferior.

proc getvar {variable} {
    global decimal
    global gdb_prompt

    set value 0

    set msg "get $variable"
    gdb_test_multiple "print $variable" $msg {
	-re " = ($decimal)\r\n$gdb_prompt $" {
	    set value $expect_out(1,string)
	    pass $msg
	}
    }
    return $value
}

set reuse_time [getvar "reuse_time"]

# Now the real test.  Run to a breakpoint in a thread that exits
# immediately once resumed.  The thread ends up left on the thread
# list, marked exited (exactly because it's the selected thread).
gdb_breakpoint "do_nothing_thread_func"
gdb_continue_to_breakpoint "do_nothing_thread_func"

delete_breakpoints

# Let the program continue, constantly spawning short-lived threads
# (one at a time).  On some targets, after a bit, a new thread reuses
# the tid of the old exited thread that we still have selected.  GDB
# should not crash in this situation.  Of course, if the tid number
# space is shared between all processes in the system (such as on
# Linux), there's a chance that some other process grabs the TID, but
# that can never cause a spurious test fail.
gdb_breakpoint "after_reuse_time"

# Higher than what the test program sleeps before exiting.
set timeout [expr $reuse_time * 2]

gdb_continue_to_breakpoint "after_reuse_time"