]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-objfile-script.exp
Copyright year update in most files of the GDB Project.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-objfile-script.exp
CommitLineData
c5a57081 1# Copyright (C) 2011-2012 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
19if $tracelevel then {
20 strace $tracelevel
21}
22
23set testfile "py-objfile-script"
24set srcfile ${testfile}.c
25set binfile ${objdir}/${subdir}/${testfile}
26if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
27 untested "Couldn't compile ${srcfile}"
28 return -1
29}
30
31# Start with a fresh gdb.
32gdb_exit
33gdb_start
34
35# Skip all tests if Python scripting is not enabled.
36if { [skip_python_tests] } { continue }
37
38# Make the -gdb.py script available to gdb, it is automagically loaded by gdb.
39# Care is taken to put it in the same directory as the binary so that
40# gdb will find it.
28a0b48c 41set remote_python_file [remote_download host ${srcdir}/${subdir}/${testfile}-gdb.py.in ${subdir}/${testfile}-gdb.py]
dbaefcf7
DE
42
43gdb_reinitialize_dir $srcdir/$subdir
44gdb_load ${binfile}
45
46# Verify gdb loaded the script.
47gdb_test "info auto-load-scripts" "Yes.*/${testfile}-gdb.py.*"
48
49if ![runto_main] {
50 perror "couldn't run to main"
51 return
52}
53
54gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
55 ".*Breakpoint.*"
56gdb_test "continue" ".*Breakpoint.*"
57
58gdb_test "print ss" " = a=<1> b=<2>"
59
60remote_file host delete ${remote_python_file}