#! /bin/bash # Copyright (C) 2015 Red Hat, Inc. # This file is part of elfutils. # # 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 . . $srcdir/test-subr.sh if ! grep -q -F '#define _FILE_OFFSET_BITS' ${abs_top_builddir}/config.h; then echo "LFS testing is irrelevent on this system" exit 77 fi # #include # int main () { # FILE *f = fopen ("/dev/null", "r"); # return f == NULL; # } # # Built for Linux i686, without setting _FILE_OFFSET_BITS. # $ gcc -m32 -O2 nolfs.c -o testfile-nolfs testfiles testfile-nolfs LFS_FORMAT='BEGIN { while ((getline < "%s") > 0) /^\w/ && bad[$0] FS="@" } /@@GLIBC_/ && $1 in bad { print $1 }' LFS=$(printf "$LFS_FORMAT" "${abs_srcdir}/lfs-symbols") makeprint() { make print-$1 -C $2 |& awk -F= "/^$1=/{ print \$2 }" } testrun_lfs() { bad=$(testrun ${abs_top_builddir}/src/nm -u "$1" | awk "$LFS") if [ -n "$bad" ]; then echo "$1 contains non-lfs symbols:" $bad exit_status=1 fi } # First sanity-check that LFS detection works. exit_status=0 testrun_lfs ./testfile-nolfs if [ $exit_status -eq 0 ]; then echo "Didn't detect any problem with testfile-nolfs!" exit 99 fi exit_status=0 # Check all normal build targets. for dir in libelf libdw libasm libcpu src; do dir=${abs_top_builddir}/$dir for program in $(makeprint PROGRAMS $dir); do testrun_lfs $dir/$program done done # Check all libebl modules. dir=${abs_top_builddir}/backends for module in $(makeprint modules $dir); do testrun_lfs $dir/libebl_$module.so done # Check all test programs. dir=${abs_builddir} for program in $(makeprint check_PROGRAMS $dir); do testrun_lfs $dir/$program done exit $exit_status