1#! /bin/sh 2# Copyright (C) 2015 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-i-test.sh 21testfiles testfile-inlines 22 23# Split off the debuginfo and put it under a separate subdir from the 24# original binary. Use --debuginfo-path to connect the dots again. 25# Note that we use separate subdirs/roots for the binaries and debug files. 26abs_test_bindir=$(pwd)/bindir 27abs_test_debugdir=$(pwd)/debugdir 28 29mkdir ${abs_test_bindir} 30mkdir ${abs_test_bindir}/bin 31mkdir ${abs_test_debugdir} 32mkdir ${abs_test_debugdir}/bin 33 34testrun ${abs_top_builddir}/src/strip -f ${abs_test_debugdir}/bin/testfile-inlines.debug -o ${abs_test_bindir}/bin/testfile-inlines testfile-inlines 35 36# Can we find the separate debuginfo file now? 37testrun_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 380x00000000000005a0: foobar at /tmp/x.cpp:5 390x00000000000005a1: foobar at /tmp/x.cpp:6 400x00000000000005b0: fubar at /tmp/x.cpp:10 410x00000000000005b1: fubar at /tmp/x.cpp:11 420x00000000000005c0: foobar at /tmp/x.cpp:5 43 (inlined by) bar at /tmp/x.cpp:15 440x00000000000005d0: fubar at /tmp/x.cpp:10 45 (inlined by) baz at /tmp/x.cpp:20 460x00000000000005e0: foobar at /tmp/x.cpp:5 47 (inlined by) bar at /tmp/x.cpp:15 48 (inlined by) _Z3foov at /tmp/x.cpp:25 490x00000000000005e1: fubar at /tmp/x.cpp:10 50 (inlined by) baz at /tmp/x.cpp:20 51 (inlined by) _Z3foov at /tmp/x.cpp:26 520x00000000000005f0: _Z2fuv at /tmp/x.cpp:31 530x00000000000005f1: fubar at /tmp/x.cpp:10 54 (inlined by) _Z2fuv at /tmp/x.cpp:32 550x00000000000005f2: foobar at /tmp/x.cpp:5 56 (inlined by) _Z2fuv at /tmp/x.cpp:33 57EOF 58 59# Cleanup 60rm ${abs_test_bindir}/bin/testfile-inlines 61rm ${abs_test_debugdir}/bin/testfile-inlines.debug 62rmdir ${abs_test_bindir}/bin 63rmdir ${abs_test_bindir} 64rmdir ${abs_test_debugdir}/bin 65rmdir ${abs_test_debugdir} 66 67exit 0 68