]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/start.exp
Updated copyright notices for most files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / start.exp
CommitLineData
0fb0cc75 1# Copyright 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
3be49e7a
JB
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
3be49e7a 6# (at your option) any later version.
e22f8b7c 7#
3be49e7a
JB
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.
e22f8b7c 12#
3be49e7a 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
3be49e7a
JB
15
16if $tracelevel then {
17 strace $tracelevel
18}
19
20set prms_id 0
21set bug_id 0
22
23set testfile start
24set srcfile ${testfile}.c
25set binfile ${objdir}/${subdir}/${testfile}
26if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
27 untested "Couldn't compile test program"
28 return -1
29}
30
31# Get things started.
32
33gdb_exit
34gdb_start
35gdb_reinitialize_dir $srcdir/$subdir
36gdb_load ${binfile}
37
fc9b693c
JK
38# This is a testcase specifically for the `start' GDB command. For regular
39# stop-in-main goal in the testcases consider using `runto_main' instead.
40
3be49e7a 41# For C programs, "start" should stop in main().
b741e217
DJ
42if { [gdb_start_cmd] < 0 } {
43 untested start
44 return -1
45}
3be49e7a 46
b741e217 47gdb_test "" \
3be49e7a
JB
48 "main \\(\\) at .*start.c.*" \
49 "start"