3 # ver_test_pr31830.sh -- a test case for version scripts
5 # Copyright (C) 2024 Free Software Foundation, Inc.
7 # This file is part of gold.
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
24 # This test verifies that linker-generated symbols (e.g., _end)
25 # get correct version information even in the presence of
26 # a shared library that provides those symbols with different
31 if ! grep -q "$2" "$1"
33 echo "Did not find expected symbol in $1:"
36 echo "Actual output below:"
46 echo "Found unexpected symbol in $1:"
49 echo "Actual output below:"
55 check ver_test_pr31830_a.syms
"foo@GLIBC_2.2.5$"
56 check ver_test_pr31830_b.syms
"foo@GLIBC_2.2.5$"
58 check_missing ver_test_pr31830_a.syms
"foo@@GLIBC_2.2.5$"
59 check_missing ver_test_pr31830_b.syms
"foo@@GLIBC_2.2.5$"