1 # Copyright 2015-2019 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 # Test that GDB isn't silent if it fails to remove a breakpoint from
17 # the main program, independently of whether the program was loaded
18 # with "file PROGRAM" or directly from the command line with "gdb
21 # Test that execution commands in a GDB script file run through -x
22 # work as expected. Specifically, the scripts creates a breakpoint
23 # that has "continue" in its command list, and then does "run".
27 if {[build_executable "failed to prepare" $testfile $srcfile debug]} {
31 set x_file ${srcdir}/${subdir}/$testfile.gdb
34 set saved_gdbflags $GDBFLAGS
36 # Run the test proper.
39 global inferior_exited_re
42 global saved_gdbflags GDBFLAGS
47 set GDBFLAGS "$GDBFLAGS -x $x_file $binfile"
49 set GDBFLAGS $saved_gdbflags
50 append GDBFLAGS " -ex \"set height unlimited\""
51 append GDBFLAGS " -x \"$x_file\""
52 append GDBFLAGS " --args \"$binfile\""
63 gdb_test_multiple "" $test {
64 -re "$inferior_exited_re normally.*$gdb_prompt $" {
67 -re "Don't know how to run.*$gdb_prompt $" {
75 set GDBFLAGS $saved_gdbflags