1# This testcase is part of GDB, the GNU debugger. 2 3# Copyright 2005-2013 Free Software Foundation, Inc. 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 7# the Free Software Foundation; either version 3 of the License, or 8# (at your option) any later version. 9# 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. 14# 15# You should have received a copy of the GNU General Public License 16# along with this program. If not, see <http://www.gnu.org/licenses/>. 17 18# Test GDB's "source" command - reads in a GDB script. 19 20 21 22set testfile "structs" 23set srcfile ${testfile}.c 24set binfile ${objdir}/${subdir}/${testfile} 25 26gdb_start 27 28gdb_test "source ${srcdir}/${subdir}/source-error.gdb" \ 29 "source-error.gdb:21: Error in sourced command file:\[\r\n\]*Cannot access memory at address 0x0.*" \ 30 "script contains error" 31 32gdb_test "source -v ${srcdir}/${subdir}/source-test.gdb" \ 33 "echo test source options.*" \ 34 "source -v" 35 36# There was a bug where -v got stuck in the "on" position. 37# Verify "source script", without the -v, is not verbose. 38set test "source after -v" 39gdb_test_multiple "source ${srcdir}/${subdir}/source-test.gdb" $test { 40 -re "echo test source options.*$gdb_prompt $" { 41 fail "$test" 42 } 43 -re "test source options.*$gdb_prompt $" { 44 pass "$test" 45 } 46} 47 48gdb_test "dir ${srcdir}/${subdir}" "Source directories searched: .*" \ 49 "set search directories" 50gdb_test "source -s ./source-test.gdb" \ 51 "test source options" \ 52 "source -s" 53 54# Test -v and -s in either order. 55gdb_test "source -s -v ./source-test.gdb" \ 56 "echo test source options.*" \ 57 "source -s -v" 58gdb_test "source -v -s ./source-test.gdb" \ 59 "echo test source options.*" \ 60 "source -v -s" 61 62gdb_exit 63