blob: a765db6395e9764c95dbdc2a270ee7ebfc1280f7 [file] [log] [blame]
Roland McGrath1b8b4462005-11-16 01:33:38 +00001#! /bin/sh
Mark Wielaardcaf135b2017-04-05 17:09:27 +02002# Copyright (C) 2005-2015, 2017 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003# This file is part of elfutils.
Roland McGrath1b8b4462005-11-16 01:33:38 +00004#
Mark Wielaardde2ed972012-06-05 17:15:16 +02005# This file is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3 of the License, or
8# (at your option) any later version.
Roland McGrath1b8b4462005-11-16 01:33:38 +00009#
Mark Wielaardde2ed972012-06-05 17:15:16 +020010# elfutils is distributed in the hope that it will be useful, but
Ulrich Drepper361df7d2006-04-04 21:38:57 +000011# WITHOUT ANY WARRANTY; without even the implied warranty of
Mark Wielaardde2ed972012-06-05 17:15:16 +020012# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
Ulrich Drepper361df7d2006-04-04 21:38:57 +000014#
Mark Wielaardde2ed972012-06-05 17:15:16 +020015# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
Ulrich Drepper361df7d2006-04-04 21:38:57 +000017
Roland McGrath1b8b4462005-11-16 01:33:38 +000018
19# This file is sourced by ". $srcdir/test-subr.sh" at the start of
20# each test script. It defines some functions they use and sets up
21# canonical sh state for test runs.
22
23set -e
24
Mark Wielaard86be7922013-04-26 23:44:25 +020025# Each test runs in its own directory to make sure they can run in parallel.
26test_dir="test-$$"
27mkdir -p "$test_dir"
Mark Wielaard807ea312013-04-29 20:48:36 +020028cd "$test_dir"
Mark Wielaard86be7922013-04-26 23:44:25 +020029
Roland McGratha845f682008-12-03 03:41:58 +000030#LC_ALL=C
31#export LC_ALL
32
Roland McGrath1b8b4462005-11-16 01:33:38 +000033remove_files=
Mark Wielaard527e21e2013-04-27 23:15:44 +020034
35# Tests that trap EXIT (0) themselves should call this explicitly.
36exit_cleanup()
37{
Mark Wielaard807ea312013-04-29 20:48:36 +020038 rm -f $remove_files; cd ..; rmdir $test_dir
Mark Wielaard527e21e2013-04-27 23:15:44 +020039}
40trap exit_cleanup 0
Roland McGrath1b8b4462005-11-16 01:33:38 +000041
42tempfiles()
43{
44 remove_files="$remove_files $*"
45}
46
47testfiles()
48{
49 for file; do
Mark Wielaard7ec8d272015-05-30 23:00:40 +020050 bunzip2 -c ${abs_srcdir}/${file}.bz2 > ${file} || exit 77
Roland McGrath1b8b4462005-11-16 01:33:38 +000051 remove_files="$remove_files $file"
52 done
53}
54
55testrun_out()
56{
57 outfile="$1"
58 shift
59 remove_files="$remove_files $outfile"
60 testrun "$@" > $outfile 2>&1 || :
61}
62
63testrun_compare()
64{
65 outfile="${1##*/}.out"
66 testrun_out $outfile "$@"
Roland McGrathe4c22ea2007-10-23 13:07:39 +000067 diff -u $outfile -
Roland McGrath1b8b4462005-11-16 01:33:38 +000068 # diff's exit status will kill the script.
69}
70
71test_cleanup()
72{
73 rm -f $remove_files
74 remove_files=
75}
76
77# See test-wrapper.sh, which sets the environment for this.
78testrun()
79{
80 ${elfutils_testrun}_testrun "$@"
81}
82
83built_testrun()
84{
85 LD_LIBRARY_PATH="${built_library_path}${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"\
Mark Wielaarde3e3ee22012-10-01 16:14:12 +020086 $VALGRIND_CMD "$@"
Roland McGrath1b8b4462005-11-16 01:33:38 +000087}
88
89installed_testrun()
90{
91 program="$1"
92 shift
93 case "$program" in
Mark Wielaard86be7922013-04-26 23:44:25 +020094 ${abs_builddir}/*)
Roland McGrath1b8b4462005-11-16 01:33:38 +000095 if [ "x$elfutils_tests_rpath" != xno ]; then
96 echo >&2 installcheck not possible with --enable-tests-rpath
97 exit 77
98 fi
99 ;;
Mark Wielaard86be7922013-04-26 23:44:25 +0200100 ${abs_top_builddir}/src/*)
Roland McGrathaf74f5c2005-11-18 02:25:14 +0000101 program=${bindir}/`program_transform ${program##*/}`
Roland McGrath1b8b4462005-11-16 01:33:38 +0000102 ;;
103 esac
Roland McGrath9365d2c2005-11-18 23:55:47 +0000104 if [ "${libdir}" != /usr/lib ] && [ "${libdir}" != /usr/lib64 ]; then
Roland McGrathc1c6a9d2012-02-21 12:51:36 -0800105 LD_LIBRARY_PATH="${libdir}:${libdir}/elfutils\
106${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" \
Mark Wielaarde3e3ee22012-10-01 16:14:12 +0200107 $VALGRIND_CMD $program ${1+"$@"}
Roland McGrathaf74f5c2005-11-18 02:25:14 +0000108 else
Mark Wielaarde3e3ee22012-10-01 16:14:12 +0200109 $VALGRIND_CMD $program ${1+"$@"}
Roland McGrathaf74f5c2005-11-18 02:25:14 +0000110 fi
Roland McGrath1b8b4462005-11-16 01:33:38 +0000111}
112
113program_transform()
114{
115 echo "$*" | sed "${program_transform_name}"
116}
Mark Wielaard94e387f2012-08-01 15:31:12 +0200117
Mark Wielaard86be7922013-04-26 23:44:25 +0200118self_test_files=`echo ${abs_top_builddir}/src/addr2line \
119${abs_top_builddir}/src/elfcmp ${abs_top_builddir}/src/elflint \
120${abs_top_builddir}/src/nm ${abs_top_builddir}/src/objdump \
Mark Wielaardc80375d2014-01-16 13:48:24 +0100121${abs_top_builddir}/src/readelf \
122${abs_top_builddir}/src/size.o ${abs_top_builddir}/src/strip.o \
123${abs_top_builddir}/libelf/libelf.so \
124${abs_top_builddir}/libdw/libdw.so \
125${abs_top_builddir}/backends/libebl_i386.so \
126${abs_top_builddir}/backends/libebl_x86_64.so`
Mark Wielaard94e387f2012-08-01 15:31:12 +0200127
128# Provide a command to run on all self-test files with testrun.
129testrun_on_self()
130{
131 exit_status=0
132
133 for file in $self_test_files; do
Mark Wielaardbf707b52012-08-01 15:39:11 +0200134 testrun $* $file \
135 || { echo "*** failure in $* $file"; exit_status=1; }
136 done
137
138 # Only exit if something failed
139 if test $exit_status != 0; then exit $exit_status; fi
140}
141
Mark Wielaardcaf135b2017-04-05 17:09:27 +0200142# Compress the files first. Compress both debug sections and symtab.
143testrun_on_self_compressed()
144{
145 exit_status=0
146
147 for file in $self_test_files; do
148 tempfiles ${file}z
149 testrun ${abs_top_builddir}/src/elfcompress -f -q -o ${file}z ${file}
150 testrun ${abs_top_builddir}/src/elfcompress -f -q --name='.s??tab' ${file}z
151
152 testrun $* ${file}z \
153 || { echo "*** failure in $* ${file}z"; exit_status=1; }
154 done
155
156 # Only exit if something failed
157 if test $exit_status != 0; then exit $exit_status; fi
158}
159
Mark Wielaardbf707b52012-08-01 15:39:11 +0200160# Same as above, but redirects stdout to /dev/null
161testrun_on_self_quiet()
162{
163 exit_status=0
164
165 for file in $self_test_files; do
166 testrun $* $file > /dev/null \
167 || { echo "*** failure in $* $file"; exit_status=1; }
Mark Wielaard94e387f2012-08-01 15:31:12 +0200168 done
169
170 # Only exit if something failed
171 if test $exit_status != 0; then exit $exit_status; fi
172}