1#!/usr/local/bin/bash
2# Copyright (C) 2013 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# Linux /proc/PID/maps file with some non-file entries (and fake exe/lib names).
21tempfiles testmaps
22cat > testmaps <<EOF
2300400000-024aa000 r-xp 00000000 08:02 159659                             /opt/TestBins/bin/arwijn
24026aa000-026b2000 rwxp 020aa000 08:02 159659                             /opt/TestBins/bin/arwijn
25026b2000-026bf000 rwxp 00000000 00:00 0
260335a000-03e6f000 rwxp 00000000 00:00 0                                  [heap]
272b7b38282000-2b7b38302000 rwxs 00000000 00:06 493872                     socket:[493872]
282b7b38302000-2b7b38312000 rwxs 00000000 00:06 493872                     socket:[493872]
292b7b38312000-2b7b38b12000 r-xs 00000000 00:06 493872                     socket:[493872]
302b7b38b12000-2b7b38b22000 rwxs 00000000 00:06 493872                     socket:[493872]
312b7b38b22000-2b7b39322000 rwxs 00000000 00:06 493872                     socket:[493872]
322b7b4439f000-2b7b45ea1000 rwxp 00000000 00:00 0
337f31e7d9f000-7f31e7f29000 r-xp 00000000 fd:00 917531                     /lib64/libc-1.13.so
347f31e7f29000-7f31e8128000 ---p 0018a000 fd:00 917531                     /lib64/libc-1.13.so
357f31e8128000-7f31e812c000 r--p 00189000 fd:00 917531                     /lib64/libc-1.13.so
367f31e812c000-7f31e812d000 rw-p 0018d000 fd:00 917531                     /lib64/libc-1.13.so
377f31e812d000-7f31e8132000 rw-p 00000000 00:00 0 
387f31ea3f9000-7f31ea3fc000 rw-s 00000000 00:09 3744                       anon_inode:kvm-vcpu
397f31ea3fc000-7f31ea3ff000 rw-s 00000000 00:09 3744                       anon_inode:kvm-vcpu
407f31ea400000-7f31ea402000 rw-p 00000000 00:00 0 
417fff26cf7000-7fff26d0c000 rwxp 00000000 00:00 0                          [stack]
427fff26dff000-7fff26e00000 r-xp 00000000 00:00 0                          [vdso]
43ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
44EOF
45
46testrun_compare ${abs_top_builddir}/src/unstrip -n -M testmaps <<\EOF
470x400000+0x22b2000 - - - /opt/TestBins/bin/arwijn
480x7f31e7d9f000+0x38e000 - - - /lib64/libc-1.13.so
49EOF
50
51exit 0
52