Add/fix copyright notices and adjust to latest GNU FDL.
[platform/upstream/coreutils.git] / tests / dd / misc
1 #!/bin/sh
2 # Ensure dd treats `--' properly.
3 # Also test some flag values.
4
5 # Copyright (C) 1999, 2004, 2005, 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 tmp_in=dd-in.$$
23 tmp_in2=dd-in2.$$
24 tmp_sym=dd-sym.$$
25 tmp_out=dd-out.$$
26
27 if test "$VERBOSE" = yes; then
28   set -x
29   dd --version
30 fi
31
32 test_failure=0
33 echo data > $tmp_in || test_failure=1
34 ln $tmp_in $tmp_in2 || test_failure=1
35 ln -s $tmp_in $tmp_sym || test_failure=1
36 if test $test_failure = 1; then
37   echo 'failure in testing framework'
38   exit 1
39 fi
40
41 dd if=$tmp_in of=$tmp_out 2> /dev/null || fail=1
42 cmp $tmp_in $tmp_out || fail=1
43
44 rm $tmp_out
45 dd -- if=$tmp_in of=$tmp_out 2> /dev/null || fail=1
46 cmp $tmp_in $tmp_out || fail=1
47
48 if dd oflag=append if=$tmp_in of=$tmp_out 2> /dev/null; then
49   cmp $tmp_in $tmp_out || fail=1
50 fi
51
52 if dd iflag=nofollow if=$tmp_in count=0 2> /dev/null; then
53   dd iflag=nofollow if=$tmp_sym count=0 2> /dev/null && fail=1
54 fi
55
56 if dd iflag=directory if=. count=0 2> /dev/null; then
57   dd iflag=directory count=0 <. 2> /dev/null || fail=1
58   dd iflag=directory count=0 <$tmp_in 2> /dev/null && fail=1
59 fi
60
61 old_ls=`ls -u --full-time $tmp_in`
62 sleep 1
63 if dd iflag=noatime if=$tmp_in of=$tmp_out 2> /dev/null; then
64   new_ls=`ls -u --full-time $tmp_in`
65   if test "x$old_ls" != "x$new_ls"; then
66     echo "dd iflag=noatime updated atime; O_NOATIME bug in your kernel?" >&2
67     fail=1
68   fi
69 fi
70
71 if dd oflag=nolinks if=$tmp_in of=$tmp_out 2> /dev/null; then
72   dd iflag=nolinks if=$tmp_in > /dev/null 2>&1 && fail=1
73   dd iflag=nolinks < $tmp_in > /dev/null 2>&1 && fail=1
74   dd oflag=nolinks < $tmp_in > $tmp_out 2>&1 || fail=1
75 fi
76
77 rm -f $tmp_in $tmp_in2 $tmp_sym $tmp_out
78
79 exit $fail