gdb
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / start.exp
CommitLineData
0b302171 1# Copyright 2005, 2007-2012 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 15
3be49e7a
JB
16
17set testfile start
18set srcfile ${testfile}.c
19set binfile ${objdir}/${subdir}/${testfile}
20if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
21 untested "Couldn't compile test program"
22 return -1
23}
24
25# Get things started.
26
27gdb_exit
28gdb_start
29gdb_reinitialize_dir $srcdir/$subdir
30gdb_load ${binfile}
31
fc9b693c
JK
32# This is a testcase specifically for the `start' GDB command. For regular
33# stop-in-main goal in the testcases consider using `runto_main' instead.
34
3be49e7a 35# For C programs, "start" should stop in main().
b741e217
DJ
36if { [gdb_start_cmd] < 0 } {
37 untested start
38 return -1
39}
3be49e7a 40
b741e217 41gdb_test "" \
3be49e7a
JB
42 "main \\(\\) at .*start.c.*" \
43 "start"
This page took 1.371936 seconds and 4 git commands to generate.