]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.dwarf2/dw2-stack-boundary.exp
aarch64, testsuite: avoid regexes in opcode field
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.dwarf2 / dw2-stack-boundary.exp
CommitLineData
1d506c26 1# Copyright 2010-2024 Free Software Foundation, Inc.
c0efa795
JK
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/>.
810cfdbb 15load_lib dwarf.exp
c0efa795
JK
16
17# This test can only be run on targets which support DWARF-2 and use gas.
ce8d533e 18require dwarf2_support
c0efa795 19
c83ee902 20standard_testfile .S
c0efa795
JK
21
22if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" object {}] != "" } {
23 return -1
24}
25
e8d8a0df 26clean_restart
c0efa795 27
33c6eaae
TT
28gdb_test_no_output "maint set dwarf synchronous on"
29
8eef5130 30set host_binfile [gdb_remote_download host $binfile]
c0efa795 31gdb_test_no_output "set complaints 100"
706baf4c
TV
32set w1 0
33set w2 0
8eef5130 34gdb_test_multiple "file $host_binfile" "file command" {
706baf4c
TV
35 -re "\r\nReading symbols from \[^\r\n\]*\\.\\.\\." {
36 exp_continue
37 }
6e195444 38 -re "^\r\nDuring symbol reading: location description stack underflow" {
706baf4c
TV
39 set w1 1
40 exp_continue
41 }
6e195444 42 -re "^\r\nDuring symbol reading: location description stack overflow" {
706baf4c
TV
43 set w2 1
44 exp_continue
45 }
46 -re -wrap "" {
47 pass $gdb_test_name
48 }
49}
50
51set readnow_p [readnow]
52
53if { $readnow_p } {
54 setup_kfail "gdb/26796" *-*-*
55}
56gdb_assert {$w1 && $w2}
c0efa795
JK
57
58gdb_test "p underflow" {Asked for position 0 of stack, stack only has 0 elements on it\.}
59gdb_test "p overflow" " = 2"