]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/vla-ptr.exp
Fix more cases of improper test names
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / vla-ptr.exp
CommitLineData
618f726f 1# Copyright 2014-2016 Free Software Foundation, Inc.
463bb957
SA
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/>.
15
16standard_testfile
17
5b362f04 18if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
463bb957
SA
19 return -1
20}
21
22if ![runto_main] {
23 return -1
24}
25
26set sizeof_int [get_sizeof "int" 4]
27
28# Check that VLA passed to function (pointer) points to the first element.
29gdb_breakpoint [gdb_get_line_number "foo_bp"]
30gdb_continue_to_breakpoint "foo_bp"
31gdb_test "print vla_ptr" "\\\(int \\\*\\\) $hex" "print vla_ptr (foo)"
32gdb_test "print *vla_ptr" " = 2" "print *vla_ptr (foo)"
33
34gdb_breakpoint [gdb_get_line_number "bar_bp"]
35gdb_continue_to_breakpoint "bar_bp"
36gdb_test "print vla_ptr" "\\\(int \\\*\\\) $hex" "print vla_ptr (bar)"
37gdb_test "print *vla_ptr" " = 2" "print *vla_ptr (bar)"
38
39gdb_breakpoint [gdb_get_line_number "vla_func_bp"]
40gdb_continue_to_breakpoint "vla_func_bp"
41gdb_test "print td_vla" " = \\\{4, 5, 6, 7, 8\\\}" "print td_vla"