Brian Silverman | 8649792 | 2018-02-10 19:28:39 -0500 | [diff] [blame] | 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 |
| 21 | testfiles 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. |
| 26 | abs_test_bindir=$(pwd)/bindir |
| 27 | abs_test_debugdir=$(pwd)/debugdir |
| 28 | |
| 29 | mkdir ${abs_test_bindir} |
| 30 | mkdir ${abs_test_bindir}/bin |
| 31 | mkdir ${abs_test_debugdir} |
| 32 | mkdir ${abs_test_debugdir}/bin |
| 33 | |
| 34 | testrun ${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? |
| 37 | testrun_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 | 0x00000000000005a0: foobar at /tmp/x.cpp:5 |
| 39 | 0x00000000000005a1: foobar at /tmp/x.cpp:6 |
| 40 | 0x00000000000005b0: fubar at /tmp/x.cpp:10 |
| 41 | 0x00000000000005b1: fubar at /tmp/x.cpp:11 |
| 42 | 0x00000000000005c0: foobar at /tmp/x.cpp:5 |
| 43 | (inlined by) bar at /tmp/x.cpp:15 |
| 44 | 0x00000000000005d0: fubar at /tmp/x.cpp:10 |
| 45 | (inlined by) baz at /tmp/x.cpp:20 |
| 46 | 0x00000000000005e0: foobar at /tmp/x.cpp:5 |
| 47 | (inlined by) bar at /tmp/x.cpp:15 |
| 48 | (inlined by) _Z3foov at /tmp/x.cpp:25 |
| 49 | 0x00000000000005e1: fubar at /tmp/x.cpp:10 |
| 50 | (inlined by) baz at /tmp/x.cpp:20 |
| 51 | (inlined by) _Z3foov at /tmp/x.cpp:26 |
| 52 | 0x00000000000005f0: _Z2fuv at /tmp/x.cpp:31 |
| 53 | 0x00000000000005f1: fubar at /tmp/x.cpp:10 |
| 54 | (inlined by) _Z2fuv at /tmp/x.cpp:32 |
| 55 | 0x00000000000005f2: foobar at /tmp/x.cpp:5 |
| 56 | (inlined by) _Z2fuv at /tmp/x.cpp:33 |
| 57 | EOF |
| 58 | |
| 59 | # Cleanup |
| 60 | rm ${abs_test_bindir}/bin/testfile-inlines |
| 61 | rm ${abs_test_debugdir}/bin/testfile-inlines.debug |
| 62 | rmdir ${abs_test_bindir}/bin |
| 63 | rmdir ${abs_test_bindir} |
| 64 | rmdir ${abs_test_debugdir}/bin |
| 65 | rmdir ${abs_test_debugdir} |
| 66 | |
| 67 | exit 0 |