1# Test for printing alias symbols. 2# Copyright 2017-2019 Free Software Foundation, Inc. 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} 38