1da0c48c4Sopenharmony_ci#! /bin/sh
2da0c48c4Sopenharmony_ci# Copyright (C) 2015 Red Hat, Inc.
3da0c48c4Sopenharmony_ci# This file is part of elfutils.
4da0c48c4Sopenharmony_ci#
5da0c48c4Sopenharmony_ci# This file is free software; you can redistribute it and/or modify
6da0c48c4Sopenharmony_ci# it under the terms of the GNU General Public License as published by
7da0c48c4Sopenharmony_ci# the Free Software Foundation; either version 3 of the License, or
8da0c48c4Sopenharmony_ci# (at your option) any later version.
9da0c48c4Sopenharmony_ci#
10da0c48c4Sopenharmony_ci# elfutils is distributed in the hope that it will be useful, but
11da0c48c4Sopenharmony_ci# WITHOUT ANY WARRANTY; without even the implied warranty of
12da0c48c4Sopenharmony_ci# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13da0c48c4Sopenharmony_ci# GNU General Public License for more details.
14da0c48c4Sopenharmony_ci#
15da0c48c4Sopenharmony_ci# You should have received a copy of the GNU General Public License
16da0c48c4Sopenharmony_ci# along with this program.  If not, see <http://www.gnu.org/licenses/>.
17da0c48c4Sopenharmony_ci
18da0c48c4Sopenharmony_ci. $srcdir/test-subr.sh
19da0c48c4Sopenharmony_ci
20da0c48c4Sopenharmony_ci# See run-addr2line-i-test.sh
21da0c48c4Sopenharmony_citestfiles testfile-inlines
22da0c48c4Sopenharmony_ci
23da0c48c4Sopenharmony_ci# Split off the debuginfo and put it under a separate subdir from the
24da0c48c4Sopenharmony_ci# original binary.  Use --debuginfo-path to connect the dots again.
25da0c48c4Sopenharmony_ci# Note that we use separate subdirs/roots for the binaries and debug files.
26da0c48c4Sopenharmony_ciabs_test_bindir=$(pwd)/bindir
27da0c48c4Sopenharmony_ciabs_test_debugdir=$(pwd)/debugdir
28da0c48c4Sopenharmony_ci
29da0c48c4Sopenharmony_cimkdir ${abs_test_bindir}
30da0c48c4Sopenharmony_cimkdir ${abs_test_bindir}/bin
31da0c48c4Sopenharmony_cimkdir ${abs_test_debugdir}
32da0c48c4Sopenharmony_cimkdir ${abs_test_debugdir}/bin
33da0c48c4Sopenharmony_ci
34da0c48c4Sopenharmony_citestrun ${abs_top_builddir}/src/strip -f ${abs_test_debugdir}/bin/testfile-inlines.debug -o ${abs_test_bindir}/bin/testfile-inlines testfile-inlines
35da0c48c4Sopenharmony_ci
36da0c48c4Sopenharmony_ci# Can we find the separate debuginfo file now?
37da0c48c4Sopenharmony_citestrun_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
38da0c48c4Sopenharmony_ci0x00000000000005a0: foobar at /tmp/x.cpp:5
39da0c48c4Sopenharmony_ci0x00000000000005a1: foobar at /tmp/x.cpp:6
40da0c48c4Sopenharmony_ci0x00000000000005b0: fubar at /tmp/x.cpp:10
41da0c48c4Sopenharmony_ci0x00000000000005b1: fubar at /tmp/x.cpp:11
42da0c48c4Sopenharmony_ci0x00000000000005c0: foobar at /tmp/x.cpp:5
43da0c48c4Sopenharmony_ci (inlined by) bar at /tmp/x.cpp:15
44da0c48c4Sopenharmony_ci0x00000000000005d0: fubar at /tmp/x.cpp:10
45da0c48c4Sopenharmony_ci (inlined by) baz at /tmp/x.cpp:20
46da0c48c4Sopenharmony_ci0x00000000000005e0: foobar at /tmp/x.cpp:5
47da0c48c4Sopenharmony_ci (inlined by) bar at /tmp/x.cpp:15
48da0c48c4Sopenharmony_ci (inlined by) _Z3foov at /tmp/x.cpp:25
49da0c48c4Sopenharmony_ci0x00000000000005e1: fubar at /tmp/x.cpp:10
50da0c48c4Sopenharmony_ci (inlined by) baz at /tmp/x.cpp:20
51da0c48c4Sopenharmony_ci (inlined by) _Z3foov at /tmp/x.cpp:26
52da0c48c4Sopenharmony_ci0x00000000000005f0: _Z2fuv at /tmp/x.cpp:31
53da0c48c4Sopenharmony_ci0x00000000000005f1: fubar at /tmp/x.cpp:10
54da0c48c4Sopenharmony_ci (inlined by) _Z2fuv at /tmp/x.cpp:32
55da0c48c4Sopenharmony_ci0x00000000000005f2: foobar at /tmp/x.cpp:5
56da0c48c4Sopenharmony_ci (inlined by) _Z2fuv at /tmp/x.cpp:33
57da0c48c4Sopenharmony_ciEOF
58da0c48c4Sopenharmony_ci
59da0c48c4Sopenharmony_ci# Cleanup
60da0c48c4Sopenharmony_cirm ${abs_test_bindir}/bin/testfile-inlines
61da0c48c4Sopenharmony_cirm ${abs_test_debugdir}/bin/testfile-inlines.debug
62da0c48c4Sopenharmony_cirmdir ${abs_test_bindir}/bin
63da0c48c4Sopenharmony_cirmdir ${abs_test_bindir}
64da0c48c4Sopenharmony_cirmdir ${abs_test_debugdir}/bin
65da0c48c4Sopenharmony_cirmdir ${abs_test_debugdir}
66da0c48c4Sopenharmony_ci
67da0c48c4Sopenharmony_ciexit 0
68