]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/gdb680.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / gdb680.exp
CommitLineData
8acc9f48 1# Copyright 2002-2013 Free Software Foundation, Inc.
d26bd017
KS
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
d26bd017 6# (at your option) any later version.
e22f8b7c 7#
d26bd017
KS
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.
e22f8b7c 12#
d26bd017 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/>.
d26bd017 15
d26bd017
KS
16#
17# test gdb/680
18#
19
20load_lib mi-support.exp
21set MIFLAGS "-i=mi"
22
23gdb_exit
24if [mi_gdb_start] {
25 continue
26}
27
28proc do_test {count} {
29 mi_gdb_test "-data-list-register-names -1" \
441b986a 30 {\^error,msg=\"bad register number\"} \
d26bd017
KS
31 "-data-list-register-names -1, try $count"
32}
33
34# Tests a bug with ui-out and nested uiout types. When
35# an error is encountered building a nest typed, like
36# lists or tuples, the uiout is not reset to some sane
37# state. As a result, uiout still thinks it is building
38# this nested type. Execute enough of these errors and
39# an assertion failure occurs. This is most obvious
40# with invalid register number and the register commands.
41
42# MAX_UIOUT_LEVELS is set to 5.
43set counter 0
44for {set i 0} {$i < 4} {incr i} {
45 do_test $i
46}
47
48#setup_kfail "gdb/680"
49do_test $i
50
51mi_gdb_exit
52return 0