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