1 #! /bin/sh 2 # Copyright (C) 1999, 2000, 2002, 2004 Red Hat, Inc. 3 # Written by Ulrich Drepper <drepper (at] redhat.com>, 1999. 4 # 5 # This program is Open Source software; you can redistribute it and/or 6 # modify it under the terms of the Open Software License version 1.0 as 7 # published by the Open Source Initiative. 8 # 9 # You should have received a copy of the Open Software License along 10 # with this program; if not, you may obtain a copy of the Open Software 11 # License version 1.0 from http://www.opensource.org/licenses/osl.php or 12 # by writing the Open Source Initiative c/o Lawrence Rosen, Esq., 13 # 3001 King Ranch Road, Ukiah, CA 95482. 14 set -e 15 16 # Don't fail if we cannot decompress the file. 17 bunzip2 -c $srcdir/testfile.bz2 > testfile 2>/dev/null || exit 0 18 19 # Don't fail if we cannot decompress the file. 20 bunzip2 -c $srcdir/testfile2.bz2 > testfile2 2>/dev/null || exit 0 21 22 ./get-files testfile testfile2 > get-files.out 23 24 diff -u get-files.out - <<"EOF" 25 cuhl = 11, o = 0, asz = 4, osz = 4, ncu = 191 26 file[0] = "???" 27 file[1] = "/home/drepper/gnu/new-bu/build/ttt/m.c" 28 cuhl = 11, o = 114, asz = 4, osz = 4, ncu = 5617 29 file[0] = "???" 30 file[1] = "/home/drepper/gnu/new-bu/build/ttt/b.c" 31 file[2] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h" 32 file[3] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h" 33 file[4] = "/usr/include/bits/types.h" 34 file[5] = "/usr/include/bits/sched.h" 35 file[6] = "/usr/include/bits/pthreadtypes.h" 36 file[7] = "/usr/include/stdio.h" 37 file[8] = "/usr/include/libio.h" 38 file[9] = "/usr/include/wchar.h" 39 file[10] = "/usr/include/_G_config.h" 40 file[11] = "/usr/include/gconv.h" 41 cuhl = 11, o = 412, asz = 4, osz = 4, ncu = 5752 42 file[0] = "???" 43 file[1] = "/home/drepper/gnu/new-bu/build/ttt/f.c" 44 cuhl = 11, o = 0, asz = 4, osz = 4, ncu = 2418 45 file[0] = "???" 46 file[1] = "/shoggoth/drepper/b.c" 47 file[2] = "/home/geoffk/objs/laurel-000912-branch/lib/gcc-lib/powerpc-unknown-linux-gnu/2.96-laurel-000912/include/stddef.h" 48 file[3] = "/home/geoffk/objs/laurel-000912-branch/lib/gcc-lib/powerpc-unknown-linux-gnu/2.96-laurel-000912/include/stdarg.h" 49 file[4] = "/shoggoth/drepper/<built-in>" 50 file[5] = "/usr/include/bits/types.h" 51 file[6] = "/usr/include/stdio.h" 52 file[7] = "/usr/include/libio.h" 53 file[8] = "/usr/include/_G_config.h" 54 cuhl = 11, o = 213, asz = 4, osz = 4, ncu = 2521 55 file[0] = "???" 56 file[1] = "/shoggoth/drepper/f.c" 57 cuhl = 11, o = 267, asz = 4, osz = 4, ncu = 2680 58 file[0] = "???" 59 file[1] = "/shoggoth/drepper/m.c" 60 EOF 61 62 rm -f testfile testfil2 get-files.out 63 64 exit 0 65