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