Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / tail-2 / assert
1 #!/bin/sh
2 # Test for assertion failure in "test".
3
4 # Copyright (C) 1999, 2000, 2004, 2006 Free Software Foundation, Inc.
5
6 # This program 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 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but 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, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21
22 # This test fails with tail from textutils-2.0.
23 # It would get something like this:
24 #   tail: tail.c:718: recheck: Assertion `valid_file_spec (f)' failed.
25 #   Aborted
26 # due to a race condition in which a dev/inode pair is reused.
27
28 if test "$VERBOSE" = yes; then
29   set -x
30   tail --version
31 fi
32
33 # Not "expensive" per se, but sleeping for so long is annoying.
34 . $srcdir/../very-expensive
35
36 tmp=tail-assert.$$
37 pwd=`pwd`
38 trap 'cd "$pwd" && rm -rf $tmp' 0 1 2 3 15
39
40 test_failure=0
41 mkdir $tmp || test_failure=1
42 cd $tmp || test_failure=1
43
44 if test $test_failure = 1; then
45   echo 'failure in testing framework'
46   exit 1
47 fi
48
49 ok='ok ok ok'
50
51 touch a foo
52 tail --follow=name a foo > err 2>&1 &
53 tail_pid=$!
54 # Arrange for the tail process to die after 12 seconds.
55 (sleep 12; kill $tail_pid) &
56
57 echo sleeping for 7 seconds...
58
59 # Give the backgrounded `tail' a chance to start before removing foo.
60 # Otherwise, without --retry, tail wouldn't try to open `foo' again.
61 sleep 1
62
63 rm -f foo
64 sleep 6
65 echo $ok > f
66 mv f foo
67
68 # echo waiting....
69 wait
70
71 case "`cat err`" in
72   *$ok) fail=0;;
73   *) fail=1;;
74 esac
75
76 test $fail = 1 && cat err
77
78 exit $fail