]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.xml/tdesc-errors.exp
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.xml / tdesc-errors.exp
CommitLineData
e2882c85 1# Copyright 2007-2018 Free Software Foundation, Inc.
e515b470
DJ
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
e515b470
DJ
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
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
e515b470
DJ
15
16if {[gdb_skip_xml_test]} {
17 unsupported "tdesc-errors.exp"
18 return -1
19}
20
21gdb_start
22
23proc set_bad_arch { srcfile errmsg } {
24 global gdb_prompt
25 global srcdir
26 global subdir
27
28 # Anchor the test output, so that error messages are detected.
29 set cmd "set tdesc filename $srcdir/$subdir/$srcfile"
c499ed39 30 set msg "set tdesc filename $subdir/$srcfile"
e515b470
DJ
31 set cmd_regex [string_to_regexp $cmd]
32 gdb_test_multiple $cmd $msg {
33 -re "^$cmd_regex\r\n$errmsg$gdb_prompt $" {
34 pass $msg
35 }
36 }
37}
38
39set common_warn "\r\nwarning: Could not load XML target description; ignoring\r\n"
40
41# This file contains a syntax error. We should warn the user about
42# it.
43set_bad_arch "tdesc-bogus.xml" \
44 "warning: while parsing .*: no element found$common_warn"
45
46# This file contains a bunch of unrecognized elements. They should be
47# silently ignored.
48set_bad_arch "tdesc-unknown.xml" ""