]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame_incremental - gdb/testsuite/gdb.dwarf2/dw2-stack-boundary.exp
zlib: import zlib-1.3.1 [PR32933]
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.dwarf2 / dw2-stack-boundary.exp
... / ...
CommitLineData
1# Copyright 2010-2025 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/>.
15load_lib dwarf.exp
16
17# This test can only be run on targets which support DWARF-2 and use gas.
18require dwarf2_support
19
20standard_testfile .S
21
22if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" object {}] != "" } {
23 return -1
24}
25
26clean_restart
27
28gdb_test_no_output "maint set dwarf synchronous on"
29
30set host_binfile [gdb_remote_download host $binfile]
31gdb_test_no_output "set complaints 100"
32set w1 0
33set w2 0
34gdb_test_multiple "file $host_binfile" "file command" {
35 -re "\r\nReading symbols from \[^\r\n\]*\\.\\.\\." {
36 exp_continue
37 }
38 -re "^\r\nDuring symbol reading: location description stack underflow" {
39 set w1 1
40 exp_continue
41 }
42 -re "^\r\nDuring symbol reading: location description stack overflow" {
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}
57
58gdb_test "p underflow" {Asked for position 0 of stack, stack only has 0 elements on it\.}
59gdb_test "p overflow" " = 2"