]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.guile/scm-objfile-script.exp
924011f1aeaae1fefb0bf0c2639ed31c233cb44e
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.guile / scm-objfile-script.exp
1 # Copyright (C) 2011-2020 Free Software Foundation, Inc.
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
19 load_lib gdb-guile.exp
20
21 standard_testfile
22
23 if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
24 return
25 }
26
27 # Start with a fresh gdb.
28 gdb_exit
29 gdb_start
30
31 # Skip all tests if Guile scripting is not enabled.
32 if { [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.
37 set remote_guile_file [remote_download host \
38 ${srcdir}/${subdir}/${testfile}-gdb.in \
39 [standard_output_file ${testfile}-gdb.scm]]
40
41 gdb_reinitialize_dir $srcdir/$subdir
42 gdb_test_no_output "set auto-load safe-path ${remote_guile_file}" \
43 "set auto-load safe-path"
44 gdb_load ${binfile}
45
46 # Verify gdb loaded the script.
47 gdb_test "info auto-load guile-scripts" "Yes.*/${testfile}-gdb.scm.*"
48
49 if ![gdb_guile_runto_main] {
50 return
51 }
52
53 gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
54 ".*Breakpoint.*"
55 gdb_test "continue" ".*Breakpoint.*"
56
57 gdb_test "print ss" " = a=<1> b=<2>"