[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.base / nested-subp2.exp
blob533261dc4224364c49ef0704e12c688ff6ed62a6
1 # Copyright 2015-2019 Free Software Foundation, Inc.
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.
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.
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/>.
16 # This file is part of the gdb testsuite.
19 # Test nested functions related functionality.
22 standard_testfile
25 set testcase "nested-subp2"
27 if { [gdb_compile "${srcdir}/${subdir}/${testcase}.c" \
28                   [standard_output_file "${testcase}"] \
29                   executable \
30                   [list debug "additional_flags=-std=gnu99"]] != "" } {
31     return -1
35 # Run until the variables we are interested in are visible.
37 clean_restart "${testcase}"
38 if ![runto_main] {
39     perror "could not run to main"
40     continue
43 set bp_location [gdb_get_line_number "STOP" "${testcase}.c"]
44 gdb_test "break ${testcase}.c:${bp_location}" \
45          "Breakpoint \[0-9\]+ at 0x\[0-9a-fA-F\]+: .*" \
46          "breakpoint to the STOP marker"
47 gdb_test "continue" \
48          "Breakpoint \[0-9\]+, increment .*" \
49          "continue to the STOP marker"
52 # Check we get correct values for both local and non-local variable references.
54 gdb_test "print c"     "102 'f'"
55 gdb_test "print count" "0"
58 # Same but a little later: make sure we were looking at the proper places.
60 gdb_test "continue" \
61          "Breakpoint \[0-9\]+, increment .*" \
62          "continue to the STOP marker"
63 gdb_test "print c"     "111 'o'"
64 gdb_test "print count" "1"