]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.xml/tdesc-xinclude.exp
ld: pru: Increase the default memory region sizes
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.xml / tdesc-xinclude.exp
1 # Copyright 2007-2024 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 require allow_xml_test
17
18 gdb_start
19
20 proc set_arch { srcfile errmsg } {
21 global gdb_prompt
22 global srcdir
23 global subdir
24
25 # Anchor the test output, so that error messages are detected.
26 set cmd "set tdesc filename $srcdir/$subdir/$srcfile"
27 set msg "set tdesc filename $subdir/$srcfile"
28 set cmd_regex [string_to_regexp $cmd]
29 gdb_test_multiple $cmd $msg {
30 -re "^$cmd_regex\r\n$errmsg$gdb_prompt $" {
31 pass $msg
32 }
33 }
34 }
35
36 set common_warn "\r\nwarning: Could not load XML target description; ignoring\r\n"
37
38 # This file is valid, but specifies an unknown architecture.
39 # We should get a warning, if we process the includes correctly.
40 set_arch "includes.xml" \
41 "warning:.*specified unknown architecture.* \"invalid-body\"$common_warn"
42
43 # This file contains a missing include. We should warn the user about
44 # it.
45 set_arch "bad-include.xml" \
46 "warning:.*Could not load XML document \"nonexistant.xml\"$common_warn"
47
48 # Make sure we detect infinite loops, eventually.
49 set_arch "loop.xml" \
50 "warning:.*Maximum XInclude depth.*$common_warn"