1 #! /bin/sh 2 # Copyright (C) 1999, 2000, 2002, 2003, 2005 Red Hat, Inc. 3 # This file is part of elfutils. 4 # Written by Ulrich Drepper <drepper (at] redhat.com>, 1999. 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 21 testfiles testfile testfile2 22 23 testrun_compare ${abs_builddir}/get-pubnames testfile testfile2 <<\EOF 24 [ 0] "main", die: 104, cu: 11 25 CU name: "m.c" 26 object name: "main" 27 [ 1] "a", die: 174, cu: 11 28 CU name: "m.c" 29 object name: "a" 30 [ 2] "bar", die: 295, cu: 202 31 CU name: "b.c" 32 object name: "bar" 33 [ 3] "foo", die: 5721, cu: 5628 34 CU name: "f.c" 35 object name: "foo" 36 [ 0] "bar", die: 72, cu: 11 37 CU name: "b.c" 38 object name: "bar" 39 [ 1] "foo", die: 2490, cu: 2429 40 CU name: "f.c" 41 object name: "foo" 42 [ 2] "main", die: 2593, cu: 2532 43 CU name: "m.c" 44 object name: "main" 45 [ 3] "a", die: 2663, cu: 2532 46 CU name: "m.c" 47 object name: "a" 48 EOF 49 50 exit 0 51