gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / source.exp
CommitLineData
a7b01baf
AC
1# This testcase is part of GDB, the GNU debugger.
2
7b6bb8da 3# Copyright 2005, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
a7b01baf
AC
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
e22f8b7c 7# the Free Software Foundation; either version 3 of the License, or
a7b01baf 8# (at your option) any later version.
e22f8b7c 9#
a7b01baf
AC
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
e22f8b7c 14#
a7b01baf 15# You should have received a copy of the GNU General Public License
e22f8b7c 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
a7b01baf
AC
17
18# Test GDB's "source" command - reads in a GDB script.
19
20
a7b01baf
AC
21if $tracelevel then {
22 strace $tracelevel
23}
24
a7b01baf
AC
25
26set testfile "structs"
27set srcfile ${testfile}.c
28set binfile ${objdir}/${subdir}/${testfile}
29
30gdb_start
31
17d92a02 32gdb_test "source ${srcdir}/${subdir}/source-error.gdb" \
3a08d52f 33 "source-error.gdb:21: Error in sourced command file:\[\r\n\]*Cannot access memory at address 0x0.*" \
17d92a02 34 "script contains error"
96e39866
DE
35
36gdb_test "source -v ${srcdir}/${subdir}/source-test.gdb" \
37 "echo test source options.*" \
38 "source -v"
39
40# There was a bug where -v got stuck in the "on" position.
41# Verify "source script", without the -v, is not verbose.
42set test "source after -v"
43gdb_test_multiple "source ${srcdir}/${subdir}/source-test.gdb" $test {
937502b8 44 -re "echo test source options.*$gdb_prompt $" {
96e39866
DE
45 fail "$test"
46 }
937502b8 47 -re "test source options.*$gdb_prompt $" {
96e39866
DE
48 pass "$test"
49 }
50}
51
27d3a1a2 52gdb_test "dir ${srcdir}/${subdir}" "Source directories searched: .*"
3f7b2faa
DE
53gdb_test "source -s ./source-test.gdb" \
54 "test source options" \
55 "source -s"
56
57# Test -v and -s in either order.
58gdb_test "source -s -v ./source-test.gdb" \
59 "echo test source options.*" \
60 "source -s -v"
61gdb_test "source -v -s ./source-test.gdb" \
62 "echo test source options.*" \
63 "source -v -s"
64
a7b01baf 65gdb_exit
This page took 0.567191 seconds and 4 git commands to generate.