]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.xml/tdesc-errors.exp
Switch the license of all .c files to GPLv3.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.xml / tdesc-errors.exp
CommitLineData
e515b470
DJ
1# Copyright 2007 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 2 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, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17if {[gdb_skip_xml_test]} {
18 unsupported "tdesc-errors.exp"
19 return -1
20}
21
22gdb_start
23
24proc set_bad_arch { srcfile errmsg } {
25 global gdb_prompt
26 global srcdir
27 global subdir
28
29 # Anchor the test output, so that error messages are detected.
30 set cmd "set tdesc filename $srcdir/$subdir/$srcfile"
c499ed39 31 set msg "set tdesc filename $subdir/$srcfile"
e515b470
DJ
32 set cmd_regex [string_to_regexp $cmd]
33 gdb_test_multiple $cmd $msg {
34 -re "^$cmd_regex\r\n$errmsg$gdb_prompt $" {
35 pass $msg
36 }
37 }
38}
39
40set common_warn "\r\nwarning: Could not load XML target description; ignoring\r\n"
41
42# This file contains a syntax error. We should warn the user about
43# it.
44set_bad_arch "tdesc-bogus.xml" \
45 "warning: while parsing .*: no element found$common_warn"
46
47# This file contains a bunch of unrecognized elements. They should be
48# silently ignored.
49set_bad_arch "tdesc-unknown.xml" ""