gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-objfile-script.exp
1 # Copyright (C) 2011-2012 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. It tests automagic loading of
17 # -gdb.py scripts.
18
19 set testfile "py-objfile-script"
20 set srcfile ${testfile}.c
21 set binfile ${objdir}/${subdir}/${testfile}
22 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
23 untested "Couldn't compile ${srcfile}"
24 return -1
25 }
26
27 # Start with a fresh gdb.
28 gdb_exit
29 gdb_start
30
31 # Skip all tests if Python scripting is not enabled.
32 if { [skip_python_tests] } { continue }
33
34 # Make the -gdb.py 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_python_file [remote_download host ${srcdir}/${subdir}/${testfile}-gdb.py.in ${subdir}/${testfile}-gdb.py]
38
39 gdb_reinitialize_dir $srcdir/$subdir
40 gdb_load ${binfile}
41
42 # Verify gdb loaded the script.
43 gdb_test "info auto-load python-scripts" "Yes.*/${testfile}-gdb.py.*"
44
45 if ![runto_main] {
46 perror "couldn't run to main"
47 return
48 }
49
50 gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
51 ".*Breakpoint.*"
52 gdb_test "continue" ".*Breakpoint.*"
53
54 gdb_test "print ss" " = a=<1> b=<2>"
55
56 remote_file host delete ${remote_python_file}
This page took 0.033079 seconds and 5 git commands to generate.