blob: df7678abe1183efe2023bab5da4ef37ea514222e [file] [log] [blame]
Ulrich Drepper65f065a2005-08-07 08:12:33 +00001#! /bin/sh
2# Copyright (C) 2005 Red Hat, Inc.
3# Written by Ulrich Drepper <drepper@redhat.com>, 2005.
4#
5# This program is Open Source software; you can redistribute it and/or
6# modify it under the terms of the Open Software License version 1.0 as
7# published by the Open Source Initiative.
8#
9# You should have received a copy of the Open Software License along
10# with this program; if not, you may obtain a copy of the Open Software
11# License version 1.0 from http://www.opensource.org/licenses/osl.php or
12# by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
13# 3001 King Ranch Road, Ukiah, CA 95482.
14set -e
15
16export LD_LIBRARY_PATH=../libebl:../libelf${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH
17
18runtest() {
19# Uncomment for debuging
20# echo $1
Ulrich Drepper837b5222005-08-16 05:12:01 +000021 if [ -f $1 ]; then
22 ../src/elflint --quiet --gnu-ld $1
23 fi
Ulrich Drepper65f065a2005-08-07 08:12:33 +000024}
25
26runtest ../src/addr2line
27runtest ../src/elfcmp
28runtest ../src/elflint
29runtest ../src/findtextrel
30runtest ../src/ld
31runtest ../src/nm
32runtest ../src/objdump
33runtest ../src/readelf
34runtest ../src/size
35runtest ../src/strip
36runtest ../libelf/libelf.so
37runtest ../libdw/libdw.so
38runtest ../libasm/libasm.so
39runtest ../libebl/libebl_alpha.so
40runtest ../libebl/libebl_arm.so
41runtest ../libebl/libebl_i386.so
42runtest ../libebl/libebl_ia64.so
43runtest ../libebl/libebl_ppc.so
44runtest ../libebl/libebl_ppc64.so
45runtest ../libebl/libebl_sh.so
46runtest ../libebl/libebl_sparc.so
47runtest ../libebl/libebl_x86_64.so