103333823c75a1c1887e923828113a1b0fd12020cElliott Hughes#! /bin/sh 203333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# Copyright (C) 2014 Red Hat, Inc. 303333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# This file is part of elfutils. 403333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# 503333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# This file is free software; you can redistribute it and/or modify 603333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# it under the terms of the GNU General Public License as published by 703333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# the Free Software Foundation; either version 3 of the License, or 803333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# (at your option) any later version. 903333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# 1003333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# elfutils is distributed in the hope that it will be useful, but 1103333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# WITHOUT ANY WARRANTY; without even the implied warranty of 1203333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1303333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# GNU General Public License for more details. 1403333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# 1503333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# You should have received a copy of the GNU General Public License 1603333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# along with this program. If not, see <http://www.gnu.org/licenses/>. 1703333823c75a1c1887e923828113a1b0fd12020cElliott Hughes 1803333823c75a1c1887e923828113a1b0fd12020cElliott Hughes. $srcdir/test-subr.sh 1903333823c75a1c1887e923828113a1b0fd12020cElliott Hughes 2003333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# Just some random testfiles, four with, one without build-id, 2103333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# and one without shdrs forcing reading the notes through phdrs. 2203333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# eu-strip --strip-sections -g --output=testfile42_noshdrs testfile42 2303333823c75a1c1887e923828113a1b0fd12020cElliott Hughes# See also run-debugaltlink.sh. 2403333823c75a1c1887e923828113a1b0fd12020cElliott Hughestestfiles testfile42 testfile_multi.dwz testfile-dwzstr.multi \ 2503333823c75a1c1887e923828113a1b0fd12020cElliott Hughes test-offset-loop.alt testfile14 testfile42_noshdrs 2603333823c75a1c1887e923828113a1b0fd12020cElliott Hughes 2703333823c75a1c1887e923828113a1b0fd12020cElliott Hughestestrun_compare ${abs_builddir}/buildid testfile42 testfile42_noshdrs \ 2803333823c75a1c1887e923828113a1b0fd12020cElliott Hughes testfile_multi.dwz testfile-dwzstr.multi \ 2903333823c75a1c1887e923828113a1b0fd12020cElliott Hughes test-offset-loop.alt testfile14 <<\EOF 3003333823c75a1c1887e923828113a1b0fd12020cElliott Hughestestfile42: build ID: d826d96c4d097bdc5c254b1f7344a907e36b0439 3103333823c75a1c1887e923828113a1b0fd12020cElliott Hughestestfile42_noshdrs: build ID: d826d96c4d097bdc5c254b1f7344a907e36b0439 3203333823c75a1c1887e923828113a1b0fd12020cElliott Hughestestfile_multi.dwz: build ID: a0d6c06e0d912d74033b6fe2808753cae8f6f594 3303333823c75a1c1887e923828113a1b0fd12020cElliott Hughestestfile-dwzstr.multi: build ID: 6da22627dae55c1d62cf9122827c665e240a056b 3403333823c75a1c1887e923828113a1b0fd12020cElliott Hughestest-offset-loop.alt: build ID: 066bbf1a7bc5676f5015ee1966a088f23bdb83ae 3503333823c75a1c1887e923828113a1b0fd12020cElliott Hughestestfile14: <no NT_GNU_BUILD_ID note> 3603333823c75a1c1887e923828113a1b0fd12020cElliott HughesEOF 3703333823c75a1c1887e923828113a1b0fd12020cElliott Hughes 3803333823c75a1c1887e923828113a1b0fd12020cElliott Hughesexit 0 39