test suite update - gdb.base/[n-r]
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / sepsymtab.exp
CommitLineData
28e7fd62 1# Copyright 2006-2013 Free Software Foundation, Inc.
94277a38
DJ
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
94277a38 6# (at your option) any later version.
e22f8b7c 7#
94277a38
DJ
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#
94277a38 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/>.
94277a38 15
94277a38
DJ
16#
17# test running programs
18#
19
20set testfile "sepsymtab"
21set srcfile ${testfile}.c
84bc3db9 22set binfile ${objdir}/${subdir}/${testfile}${EXEEXT}
94277a38
DJ
23
24if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
25 executable {debug}] != "" } {
26 untested sepsymtab.exp
27 return -1
28}
29
30if [gdb_gnu_strip_debug $binfile no-main] {
31 # check that you have a recent version of strip and objcopy installed
32 unsupported "cannot produce separate debug info files"
33 return -1
34}
35
36gdb_exit
37gdb_start
38gdb_reinitialize_dir $srcdir/$subdir
39gdb_load ${binfile}
40
41set command "info sym main"
42set command_regex [string_to_regexp $command]
43gdb_test_multiple "$command" "$command" {
efd11a33 44 -re "^${command_regex}\[\r\n\]+\\.?main in section \[^\r\n\]+\[\r\n\]+$gdb_prompt \$" {
94277a38
DJ
45 pass "$command"
46 }
47}
This page took 0.773103 seconds and 4 git commands to generate.