]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.python/py-section-script.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-section-script.exp
1 # Copyright (C) 2010-2013 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 # scripts specified in the .debug_gdb_scripts section.
18
19 # This test can only be run on targets which support ELF and use gas.
20 # For now pick a sampling of likely targets.
21 if {![istarget *-*-linux*]
22 && ![istarget *-*-gnu*]
23 && ![istarget *-*-elf*]
24 && ![istarget *-*-openbsd*]
25 && ![istarget arm*-*-eabi*]
26 && ![istarget arm*-*-symbianelf*]
27 && ![istarget powerpc-*-eabi*]} {
28 verbose "Skipping py-section-script.exp because of lack of support."
29 return
30 }
31
32 standard_testfile
33
34 if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
35 return -1
36 }
37
38 # Start with a fresh gdb.
39 gdb_exit
40 gdb_start
41
42 # Skip all tests if Python scripting is not enabled.
43 if { [skip_python_tests] } { continue }
44
45 # Make this available to gdb before the program starts, it is
46 # automagically loaded by gdb.
47 set remote_python_file [remote_download host ${srcdir}/${subdir}/${testfile}.py]
48
49 gdb_reinitialize_dir $srcdir/$subdir
50 gdb_test_no_output "set auto-load safe-path ${remote_python_file}" "set auto-load safe-path"
51 gdb_load ${binfile}
52
53 # Verify gdb loaded the script.
54 gdb_test "info auto-load python-scripts" "Yes.*${testfile}.py.*full name: .*/${testfile}.py.*"
55 # Again, with a regexp this time.
56 gdb_test "info auto-load python-scripts ${testfile}" "Yes.*${testfile}.py.*full name: .*/${testfile}.py.*"
57 # Again, with a regexp that matches no scripts.
58 gdb_test "info auto-load python-scripts no-script-matches-this" \
59 "No auto-load scripts matching no-script-matches-this."
60
61 if ![runto_main] {
62 perror "couldn't run to main"
63 return
64 }
65
66 gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
67 ".*Breakpoint.*"
68 gdb_test "continue" ".*Breakpoint.*"
69
70 gdb_test "print ss" " = a=<1> b=<2>"
71
72 remote_file host delete ${remote_python_file}