1#!/bin/sh 2 3# no_version_test.sh -- test that .gnu.version* sections are not created 4# in a shared object when symbol versioning is not used. 5 6# Copyright (C) 2009-2016 Free Software Foundation, Inc. 7# Written by Doug Kwan <dougkwan@google.com> 8 9# This file is part of gold. 10 11# This program is free software; you can redistribute it and/or modify 12# it under the terms of the GNU General Public License as published by 13# the Free Software Foundation; either version 3 of the License, or 14# (at your option) any later version. 15 16# This program is distributed in the hope that it will be useful, 17# but WITHOUT ANY WARRANTY; without even the implied warranty of 18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19# GNU General Public License for more details. 20 21# You should have received a copy of the GNU General Public License 22# along with this program; if not, write to the Free Software 23# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 24# MA 02110-1301, USA. 25 26# This file goes with no_version_test.c, a C source file 27# linked with option -shared -nostdlib. We run objdump on 28# the resulting executable and check that .gnu.version* sections 29# are not created. 30 31check() 32{ 33 file=$1 34 35 found=`egrep "\.gnu\.version.*" $file` 36 if test -n "$found"; then 37 echo "These section should not be in $file:" 38 echo "$found" 39 exit 1 40 fi 41} 42 43check "no_version_test.stdout" 44 45exit 0 46