43 lines
1.4 KiB
Bash
Executable file
43 lines
1.4 KiB
Bash
Executable file
#! /bin/sh
|
|
# Copyright (C) 2005, 2007, 2008 Red Hat, Inc.
|
|
# This file is part of elfutils.
|
|
# Written by Ulrich Drepper <drepper@redhat.com>, 2005.
|
|
#
|
|
# This file is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# elfutils is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
. $srcdir/test-subr.sh
|
|
|
|
testfiles testfile18
|
|
|
|
testrun_compare ${abs_top_builddir}/src/elflint --gnu-ld testfile18 <<\EOF
|
|
section [ 8] '.rela.dyn': relocation 1: copy relocation against symbol of type FUNC
|
|
EOF
|
|
|
|
testfiles testfile32
|
|
testrun ${abs_top_builddir}/src/elflint -q testfile32
|
|
|
|
testfiles testfile33
|
|
testrun ${abs_top_builddir}/src/elflint -q testfile33
|
|
|
|
testfiles testfile42
|
|
testrun ${abs_top_builddir}/src/elflint -q --gnu-ld testfile42
|
|
|
|
testfiles testfile46
|
|
testrun ${abs_top_builddir}/src/elflint -q testfile46
|
|
|
|
# see also run-readelf-d.sh
|
|
testfiles testlib_dynseg.so
|
|
testrun ${abs_top_builddir}/src/elflint -q --gnu-ld testlib_dynseg.so
|
|
|
|
exit 0
|