1#! /bin/sh 2# Copyright (C) 2014 Red Hat, Inc. 3# This file is part of elfutils. 4# 5# 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. 9# 10# elfutils is distributed in the hope that it will be useful, but 11# WITHOUT ANY WARRANTY; without even the implied warranty of 12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13# GNU General Public License for more details. 14# 15# 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/>. 17 18. $srcdir/test-subr.sh 19 20# See run-addr2line-test.sh run-addr2line-i-test.sh run-addr2line-i-lex-test.sh 21# Output/files/lines matched should equal what is done through addr2line 22# which uses dwfl_module_getsrc. This test uses dwarf_addrdie and 23# dwarf_getsrc_die 24testfiles testfile testfile-inlines testfile-lex-inlines 25tempfiles testfile-no-aranges testfile-inlines-no-aranges getsrc_die.out 26tempfiles testfile-lex-inlines-no-aranges good1.out good2.out good3.out 27 28cat > good1.out <<\EOF 29/home/drepper/gnu/new-bu/build/ttt/f.c:3 30/home/drepper/gnu/new-bu/build/ttt/b.c:4 31EOF 32 33cat good1.out | testrun_compare ${abs_top_builddir}/tests/getsrc_die testfile 0x08048468 0x0804845c 34 35cat > good2.out <<\EOF 36/tmp/x.cpp:5 37/tmp/x.cpp:6 38/tmp/x.cpp:10 39/tmp/x.cpp:11 40/tmp/x.cpp:5 41/tmp/x.cpp:10 42/tmp/x.cpp:5 43/tmp/x.cpp:10 44/tmp/x.cpp:10 45/tmp/x.cpp:5 46EOF 47 48cat good2.out | testrun_compare ${abs_top_builddir}/tests/getsrc_die testfile-inlines 0x00000000000005a0 0x00000000000005a1 0x00000000000005b0 0x00000000000005b1 0x00000000000005c0 0x00000000000005d0 0x00000000000005e0 0x00000000000005e1 0x00000000000005f1 0x00000000000005f2 49 50cat > good3.out <<\EOF 51/tmp/x.cpp:5 52/tmp/x.cpp:5 53/tmp/x.cpp:5 54/tmp/x.cpp:5 55EOF 56 57cat good3.out | testrun_compare ${abs_top_builddir}/tests/getsrc_die testfile-lex-inlines 0x0000000000000680 0x0000000000000681 0x0000000000000690 0x0000000000000691 58 59# Each test should also pass with no .debug_aranges present. If objcopy cannot 60# strip the testfiles then skip the remaining tests. 61objcopy --remove-section .debug_aranges testfile testfile-no-aranges || exit 0 62objcopy --remove-section .debug_aranges testfile-inlines testfile-inlines-no-aranges || exit 0 63objcopy --remove-section .debug_aranges testfile-lex-inlines testfile-lex-inlines-no-aranges || exit 0 64 65cat good1.out | testrun_compare ${abs_top_builddir}/tests/getsrc_die testfile-no-aranges 0x08048468 0x0804845c 66 67cat good2.out | testrun_compare ${abs_top_builddir}/tests/getsrc_die testfile-inlines-no-aranges 0x00000000000005a0 0x00000000000005a1 0x00000000000005b0 0x00000000000005b1 0x00000000000005c0 0x00000000000005d0 0x00000000000005e0 0x00000000000005e1 0x00000000000005f1 0x00000000000005f2 68 69cat good3.out | testrun_compare ${abs_top_builddir}/tests/getsrc_die testfile-lex-inlines-no-aranges 0x0000000000000680 0x0000000000000681 0x0000000000000690 0x0000000000000691 70 71exit 0 72