1*7304104dSAndroid Build Coastguard Worker#! /bin/sh 2*7304104dSAndroid Build Coastguard Worker# Copyright (C) 2015 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-i-test.sh 21*7304104dSAndroid Build Coastguard Workertestfiles testfile-inlines 22*7304104dSAndroid Build Coastguard Worker 23*7304104dSAndroid Build Coastguard Worker# Split off the debuginfo and put it under a separate subdir from the 24*7304104dSAndroid Build Coastguard Worker# original binary. Use --debuginfo-path to connect the dots again. 25*7304104dSAndroid Build Coastguard Worker# Note that we use separate subdirs/roots for the binaries and debug files. 26*7304104dSAndroid Build Coastguard Workerabs_test_bindir=$(pwd)/bindir 27*7304104dSAndroid Build Coastguard Workerabs_test_debugdir=$(pwd)/debugdir 28*7304104dSAndroid Build Coastguard Worker 29*7304104dSAndroid Build Coastguard Workermkdir ${abs_test_bindir} 30*7304104dSAndroid Build Coastguard Workermkdir ${abs_test_bindir}/bin 31*7304104dSAndroid Build Coastguard Workermkdir ${abs_test_debugdir} 32*7304104dSAndroid Build Coastguard Workermkdir ${abs_test_debugdir}/bin 33*7304104dSAndroid Build Coastguard Worker 34*7304104dSAndroid Build Coastguard Workertestrun ${abs_top_builddir}/src/strip -f ${abs_test_debugdir}/bin/testfile-inlines.debug -o ${abs_test_bindir}/bin/testfile-inlines testfile-inlines 35*7304104dSAndroid Build Coastguard Worker 36*7304104dSAndroid Build Coastguard Worker# Can we find the separate debuginfo file now? 37*7304104dSAndroid Build Coastguard Workertestrun_compare ${abs_top_builddir}/src/addr2line --pretty-print -a -f -i -e ${abs_test_bindir}/bin/testfile-inlines --debuginfo-path=${abs_test_debugdir} 0x00000000000005a0 0x00000000000005a1 0x00000000000005b0 0x00000000000005b1 0x00000000000005c0 0x00000000000005d0 0x00000000000005e0 0x00000000000005e1 0x00000000000005f0 0x00000000000005f1 0x00000000000005f2 <<\EOF 38*7304104dSAndroid Build Coastguard Worker0x00000000000005a0: foobar at /tmp/x.cpp:5 39*7304104dSAndroid Build Coastguard Worker0x00000000000005a1: foobar at /tmp/x.cpp:6 40*7304104dSAndroid Build Coastguard Worker0x00000000000005b0: fubar at /tmp/x.cpp:10 41*7304104dSAndroid Build Coastguard Worker0x00000000000005b1: fubar at /tmp/x.cpp:11 42*7304104dSAndroid Build Coastguard Worker0x00000000000005c0: foobar at /tmp/x.cpp:5 43*7304104dSAndroid Build Coastguard Worker (inlined by) bar at /tmp/x.cpp:15 44*7304104dSAndroid Build Coastguard Worker0x00000000000005d0: fubar at /tmp/x.cpp:10 45*7304104dSAndroid Build Coastguard Worker (inlined by) baz at /tmp/x.cpp:20 46*7304104dSAndroid Build Coastguard Worker0x00000000000005e0: foobar at /tmp/x.cpp:5 47*7304104dSAndroid Build Coastguard Worker (inlined by) bar at /tmp/x.cpp:15 48*7304104dSAndroid Build Coastguard Worker (inlined by) _Z3foov at /tmp/x.cpp:25 49*7304104dSAndroid Build Coastguard Worker0x00000000000005e1: fubar at /tmp/x.cpp:10 50*7304104dSAndroid Build Coastguard Worker (inlined by) baz at /tmp/x.cpp:20 51*7304104dSAndroid Build Coastguard Worker (inlined by) _Z3foov at /tmp/x.cpp:26 52*7304104dSAndroid Build Coastguard Worker0x00000000000005f0: _Z2fuv at /tmp/x.cpp:31 53*7304104dSAndroid Build Coastguard Worker0x00000000000005f1: fubar at /tmp/x.cpp:10 54*7304104dSAndroid Build Coastguard Worker (inlined by) _Z2fuv at /tmp/x.cpp:32 55*7304104dSAndroid Build Coastguard Worker0x00000000000005f2: foobar at /tmp/x.cpp:5 56*7304104dSAndroid Build Coastguard Worker (inlined by) _Z2fuv at /tmp/x.cpp:33 57*7304104dSAndroid Build Coastguard WorkerEOF 58*7304104dSAndroid Build Coastguard Worker 59*7304104dSAndroid Build Coastguard Worker# Cleanup 60*7304104dSAndroid Build Coastguard Workerrm ${abs_test_bindir}/bin/testfile-inlines 61*7304104dSAndroid Build Coastguard Workerrm ${abs_test_debugdir}/bin/testfile-inlines.debug 62*7304104dSAndroid Build Coastguard Workerrmdir ${abs_test_bindir}/bin 63*7304104dSAndroid Build Coastguard Workerrmdir ${abs_test_bindir} 64*7304104dSAndroid Build Coastguard Workerrmdir ${abs_test_debugdir}/bin 65*7304104dSAndroid Build Coastguard Workerrmdir ${abs_test_debugdir} 66*7304104dSAndroid Build Coastguard Worker 67*7304104dSAndroid Build Coastguard Workerexit 0 68