]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/source.exp
Fix "source" with interpreter-exec
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / source.exp
CommitLineData
a7b01baf
AC
1# This testcase is part of GDB, the GNU debugger.
2
4a94e368 3# Copyright 2005-2022 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 21
0ab77f5f 22standard_testfile structs.c
a7b01baf
AC
23
24gdb_start
25
96e39866
DE
26gdb_test "source -v ${srcdir}/${subdir}/source-test.gdb" \
27 "echo test source options.*" \
28 "source -v"
29
30# There was a bug where -v got stuck in the "on" position.
31# Verify "source script", without the -v, is not verbose.
32set test "source after -v"
33gdb_test_multiple "source ${srcdir}/${subdir}/source-test.gdb" $test {
937502b8 34 -re "echo test source options.*$gdb_prompt $" {
96e39866
DE
35 fail "$test"
36 }
937502b8 37 -re "test source options.*$gdb_prompt $" {
96e39866
DE
38 pass "$test"
39 }
40}
41
4af31552
TT
42gdb_test "dir ${srcdir}/${subdir}" "Source directories searched: .*" \
43 "set search directories"
3f7b2faa
DE
44gdb_test "source -s ./source-test.gdb" \
45 "test source options" \
46 "source -s"
47
48# Test -v and -s in either order.
49gdb_test "source -s -v ./source-test.gdb" \
50 "echo test source options.*" \
51 "source -s -v"
52gdb_test "source -v -s ./source-test.gdb" \
53 "echo test source options.*" \
54 "source -v -s"
55
7c647d61
JB
56# Test sourcing a non-existant file, both when the source command
57# comes from the a command entered at the GDB prompt, and when
58# it comes from a script being sourced.
59gdb_test "source for-sure-nonexistant-file" \
60 "for-sure-nonexistant-file: No such file or directory\."
61
62gdb_test "source source-nofile.gdb" \
63 "warning: for-sure-nonexistant-file: No such file or directory\.\[\r\n\]*source error not fatal"
64
6caa91b6
SM
65
66# Test commands that error out in sourced files, including in nested sourced
67# files.
68#
69# This needs to come after the "dir" command tested above for source-error.gdb
70# to find source-error-1.gdb.
71gdb_test "source ${srcdir}/${subdir}/source-error.gdb" \
72 [multi_line ".*source-error.gdb:20: Error in sourced command file:" \
73 "source-error-1.gdb:21: Error in sourced command file:" \
74 "Cannot access memory at address 0x0" ] \
75 "script contains error"
1e28eebb
TT
76
77# There was a case where sourcing a script containing "interpreter-exec"
78# commands would corrupt the interpreter mechanism and crash gdb.
79gdb_test "source ${srcdir}/${subdir}/interpreter-exec.gdb" \
80 "\\^done,value=\"off\"" \
81 "source interpreter-exec"