]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/symbol-alias.exp
Update copyright year range in all GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / symbol-alias.exp
CommitLineData
bf223d3e 1# Test for printing alias symbols.
42a4f53d 2# Copyright 2017-2019 Free Software Foundation, Inc.
bf223d3e
PA
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17standard_testfile symbol-alias.c symbol-alias2.c
18
19if { [prepare_for_testing "failed to prepare" ${testfile} [list $srcfile $srcfile2]] } {
20 return -1
21}
22
23if ![runto_main] then {
24 fail "can't run to main"
25 continue
26}
27
28# Functions.
29foreach f {"func" "func_alias"} {
30 gdb_test "p $f" " = {struct S \\*\\(void\\)} $hex <func>"
31 gdb_test "p *${f}()" "= {field1 = 1, field2 = 2}"
32}
33
34# Variables.
35foreach v {"g_var_s" "g_var_s_alias"} {
36 gdb_test "p $v" "= {field1 = 1, field2 = 2}"
37}