]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.python/py-mi-objfile.exp
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-mi-objfile.exp
1 # Copyright (C) 2008-2021 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 exercises PR 18833.
17
18 load_lib mi-support.exp
19 set MIFLAGS "-i=mi2"
20
21 gdb_exit
22 if [mi_gdb_start] {
23 continue
24 }
25
26 standard_testfile
27 set pyfile ${testfile}-gdb.py
28
29 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
30 untested "failed to compile"
31 return -1
32 }
33
34 if { [mi_skip_python_tests] } { continue }
35
36 # Make the -gdb.py script available to gdb, it is automagically loaded by gdb.
37 # Care is taken to put it in the same directory as the binary so that
38 # gdb will find it.
39 set remote_python_file [gdb_remote_download host ${srcdir}/${subdir}/${pyfile}]
40
41 mi_delete_breakpoints
42 mi_gdb_reinitialize_dir $srcdir/$subdir
43 mi_gdb_test "set auto-load safe-path ${remote_python_file}" \
44 {.*\^done} \
45 "set safe-path"
46
47 if [is_remote host] {
48 set filename ${testfile}
49 remote_download host ${binfile} ${filename}
50 } else {
51 set filename ${binfile}
52 }
53
54 # PR 18833. This will cause an unpatched gdb to crash.
55 mi_gdb_test "-file-exec-and-symbols ${filename}" \
56 ".*main \\(.*void\\).*\
57 return 0;.*\\^done" \
58 "file-exec-and-symbols operation"