]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-objfile-script.exp
Update Copyright year range in all files maintained by GDB.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-objfile-script.exp
CommitLineData
ecd75fc8 1# Copyright (C) 2011-2014 Free Software Foundation, Inc.
dbaefcf7
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. It tests automagic loading of
17# -gdb.py scripts.
18
b4a58790
TT
19standard_testfile
20
21if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
dbaefcf7
DE
22 return -1
23}
24
25# Start with a fresh gdb.
26gdb_exit
27gdb_start
28
29# Skip all tests if Python scripting is not enabled.
30if { [skip_python_tests] } { continue }
31
32# Make the -gdb.py script available to gdb, it is automagically loaded by gdb.
33# Care is taken to put it in the same directory as the binary so that
34# gdb will find it.
8448e842
TT
35set remote_python_file [remote_download host \
36 ${srcdir}/${subdir}/${testfile}-gdb.py.in \
37 [standard_output_file ${testfile}-gdb.py]]
dbaefcf7
DE
38
39gdb_reinitialize_dir $srcdir/$subdir
bccbefd2 40gdb_test_no_output "set auto-load safe-path ${remote_python_file}" "set auto-load safe-path"
dbaefcf7
DE
41gdb_load ${binfile}
42
43# Verify gdb loaded the script.
bf88dd68 44gdb_test "info auto-load python-scripts" "Yes.*/${testfile}-gdb.py.*"
dbaefcf7
DE
45
46if ![runto_main] {
47 perror "couldn't run to main"
48 return
49}
50
51gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
52 ".*Breakpoint.*"
53gdb_test "continue" ".*Breakpoint.*"
54
55gdb_test "print ss" " = a=<1> b=<2>"
56
57remote_file host delete ${remote_python_file}