Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / tail-2 / big-4gb
1 #!/bin/sh
2 # Demonstrate a bug in `tail -cN' when operating on files of size 4G and larger
3 # Fixed in coreutils-4.5.2.
4
5 # Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22 . $srcdir/../expensive
23
24 if test "$VERBOSE" = yes; then
25   set -x
26   tail --version
27 fi
28
29 pwd=`pwd`
30 t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
31 trap 'status=$?; cd "$pwd" && chmod -R u+rwx $t0 && rm -rf $t0 && exit $status' 0
32 trap '(exit $?); exit $?' 1 2 13 15
33
34 framework_failure=0
35 mkdir -p $tmp || framework_failure=1
36 cd $tmp || framework_failure=1
37
38 # Create a file of size exactly 4GB (2^32) with 8 bytes
39 # at the beginning and another set of 8 bytes at the end.
40 # The rest will be NUL bytes.  On most modern systems, the following
41 # creates a file that takes up only a few KB.  Here, du -sh says 16K.
42 echo abcdefgh | tr -d '\n' > big || framework_failure=1
43 echo 87654321 | tr -d '\n' > tmp || framework_failure=1
44 # Seek 4GB - 8
45 dd bs=1 seek=4294967288 if=tmp of=big 2> err || dd_failed=1
46 if test "$dd_failed" = 1; then
47   cat err 1>&2
48   echo "$0: cannot create a file large enough for this test," 1>&2
49   echo "$0: possibly because this system doesn't support large files;" 1>&2
50   echo "$0: Consider rerunning this test on a different file system." 1>&2
51   (exit 77); exit 77
52 fi
53
54 if test $framework_failure = 1; then
55   echo "$0: failure in testing framework" 1>&2
56   (exit 1); exit 1
57 fi
58
59 fail=0
60
61 tail -c1 big > out || fail=1
62 # Append a newline.
63 echo >> out
64 cat <<\EOF > exp
65 1
66 EOF
67
68 cmp out exp || fail=1
69 test $fail = 1 && diff out exp 2> /dev/null
70
71 (exit $fail); exit $fail