]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.guile/scm-objfile-script.exp
GDB copyright headers update after running GDB's copyright.py script.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.guile / scm-objfile-script.exp
CommitLineData
618f726f 1# Copyright (C) 2011-2016 Free Software Foundation, Inc.
ed3ef339
DE
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
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
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.
12#
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/>.
15
16# This file is part of the GDB testsuite.
17# It tests automagic loading of -gdb.scm scripts.
18
19load_lib gdb-guile.exp
20
21standard_testfile
22
23if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
24 return
25}
26
27# Start with a fresh gdb.
28gdb_exit
29gdb_start
30
31# Skip all tests if Guile scripting is not enabled.
32if { [skip_guile_tests] } { continue }
33
34# Make the -gdb.scm script available to gdb, it is automagically loaded by gdb.
35# Care is taken to put it in the same directory as the binary so that
36# gdb will find it.
37set remote_guile_file [remote_download host \
38 ${srcdir}/${subdir}/${testfile}-gdb.in \
39 [standard_output_file ${testfile}-gdb.scm]]
40
41gdb_reinitialize_dir $srcdir/$subdir
42gdb_test_no_output "set auto-load safe-path ${remote_guile_file}" \
43 "set auto-load safe-path"
44gdb_load ${binfile}
45
46# Verify gdb loaded the script.
47gdb_test "info auto-load guile-scripts" "Yes.*/${testfile}-gdb.scm.*"
48
49if ![gdb_guile_runto_main] {
50 return
51}
52
53gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
54 ".*Breakpoint.*"
55gdb_test "continue" ".*Breakpoint.*"
56
57gdb_test "print ss" " = a=<1> b=<2>"