]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.threads/thread-execl.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.threads / thread-execl.exp
CommitLineData
8acc9f48 1# Copyright (C) 2009-2013 Free Software Foundation, Inc.
b3444185
PA
2
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.
7#
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.
12#
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/>.
15
16# Test that GDB doesn't get stuck when stepping over an exec call done
17# by a thread other than the main thread.
18
19# There's no support for exec events in the remote protocol.
20if { [is_remote target] } {
21 return 0
22}
23
0efbbabc 24standard_testfile
b3444185
PA
25
26if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
0efbbabc 27 executable debug] != "" } {
b3444185
PA
28 return -1
29}
30
0efbbabc 31clean_restart ${binfile}
b3444185
PA
32
33runto_main
34
35# Get ourselves to the thread that execs
36gdb_breakpoint "thread_execler"
37gdb_test "continue" ".*thread_execler.*" "continue to thread start"
38
39# Now set a breakpoint at `main', and step over the execl call. The
40# breakpoint at main should be reached. GDB should not try to revert
41# back to the old thread from the old image and resume stepping it
42# (since it is gone).
43gdb_breakpoint "main"
44gdb_test "next" ".*main.*" "get to main in new image"
45
46return 0