1#! /bin/sh 2# Copyright (C) 2005, 2013 Red Hat, Inc. 3# This file is part of elfutils. 4# Written by Ulrich Drepper <drepper@redhat.com>, 2005. 5# 6# This file is free software; you can redistribute it and/or modify 7# it under the terms of the GNU General Public License as published by 8# the Free Software Foundation; either version 3 of the License, or 9# (at your option) any later version. 10# 11# elfutils is distributed in the hope that it will be useful, but 12# WITHOUT ANY WARRANTY; without even the implied warranty of 13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14# GNU General Public License for more details. 15# 16# You should have received a copy of the GNU General Public License 17# along with this program. If not, see <http://www.gnu.org/licenses/>. 18 19. $srcdir/test-subr.sh 20 21testfiles testfile testfile2 testfile8 22 23testrun_compare ${abs_builddir}/allfcts testfile testfile2 testfile8 <<\EOF 24/home/drepper/gnu/new-bu/build/ttt/m.c:5:main 25/home/drepper/gnu/new-bu/build/ttt/b.c:4:bar 26/home/drepper/gnu/new-bu/build/ttt/f.c:3:foo 27/shoggoth/drepper/b.c:4:bar 28/shoggoth/drepper/f.c:3:foo 29/shoggoth/drepper/m.c:5:main 30/home/drepper/gnu/elfutils/build/src/../../src/strip.c:107:main 31/home/drepper/gnu/elfutils/build/src/../../src/strip.c:159:print_version 32/home/drepper/gnu/elfutils/build/src/../../src/strip.c:173:parse_opt 33/home/drepper/gnu/elfutils/build/src/../../src/strip.c:201:more_help 34/home/drepper/gnu/elfutils/build/src/../../src/strip.c:217:process_file 35/usr/include/sys/stat.h:375:stat64 36/home/drepper/gnu/elfutils/build/src/../../src/strip.c:291:crc32_file 37/home/drepper/gnu/elfutils/build/src/../../src/strip.c:313:handle_elf 38EOF 39 40# = nested_funcs.c = 41# 42# static int 43# foo (int x) 44# { 45# int bar (int y) 46# { 47# return x - y; 48# } 49# 50# return bar (x * 2); 51# } 52# 53# int 54# main (int argc, char ** argv) 55# { 56# return foo (argc); 57# } 58# 59# gcc -g -o nested_funcs nested_funcs.c 60 61# = class_func.cxx = 62# 63# namespace foobar 64# { 65# class Foo 66# { 67# public: 68# int bar(int x); 69# }; 70# 71# int Foo::bar(int x) { return x - 42; } 72# }; 73# 74# int 75# main (int argc, char **argv) 76# { 77# foobar::Foo foo; 78# 79# return foo.bar (42); 80# } 81# 82# clang++ -g -o class_func class_func.cxx 83 84testfiles testfile_nested_funcs testfile_class_func 85 86testrun_compare ${abs_builddir}/allfcts testfile_nested_funcs testfile_class_func <<\EOF 87/home/mark/src/tests/nested/nested_funcs.c:2:foo 88/home/mark/src/tests/nested/nested_funcs.c:4:bar 89/home/mark/src/tests/nested/nested_funcs.c:13:main 90/home/mark/src/tests/nested/class_func.cxx:6:bar 91/home/mark/src/tests/nested/class_func.cxx:13:main 92EOF 93 94exit 0 95