~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/dd/misc

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
# Ensure dd treats `--' properly.
3
 
# Also test some flag values.
4
 
 
5
 
# Copyright (C) 1999, 2004-2011 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 3 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, see <http://www.gnu.org/licenses/>.
19
 
 
20
 
. "${srcdir=.}/init.sh"; path_prepend_ ../src
21
 
print_ver_ dd
22
 
 
23
 
tmp_in=dd-in
24
 
tmp_in2=dd-in2
25
 
tmp_sym=dd-sym
26
 
tmp_out=dd-out
27
 
 
28
 
warn=0
29
 
echo data > $tmp_in || framework_failure_
30
 
ln $tmp_in $tmp_in2 || framework_failure_
31
 
ln -s $tmp_in $tmp_sym || framework_failure_
32
 
 
33
 
dd if=$tmp_in of=$tmp_out 2> /dev/null || fail=1
34
 
compare $tmp_in $tmp_out || fail=1
35
 
 
36
 
rm $tmp_out
37
 
dd -- if=$tmp_in of=$tmp_out 2> /dev/null || fail=1
38
 
compare $tmp_in $tmp_out || fail=1
39
 
 
40
 
if dd oflag=append if=$tmp_in of=$tmp_out 2> /dev/null; then
41
 
  compare $tmp_in $tmp_out || fail=1
42
 
fi
43
 
 
44
 
case $(cat /dev/stdin <$tmp_in 2>/dev/null) in
45
 
(data)
46
 
  rm -f $tmp_out
47
 
  dd if=/dev/stdin of=$tmp_out <$tmp_in || fail=1
48
 
  compare $tmp_in $tmp_out || fail=1
49
 
esac
50
 
 
51
 
if dd iflag=nofollow if=$tmp_in count=0 2> /dev/null; then
52
 
  dd iflag=nofollow if=$tmp_sym count=0 2> /dev/null && fail=1
53
 
fi
54
 
 
55
 
if dd iflag=directory if=. count=0 2> /dev/null; then
56
 
  dd iflag=directory count=0 <. 2> /dev/null || fail=1
57
 
  dd iflag=directory count=0 <$tmp_in 2> /dev/null && fail=1
58
 
fi
59
 
 
60
 
old_ls=`ls -u --full-time $tmp_in`
61
 
sleep 1
62
 
if dd iflag=noatime if=$tmp_in of=$tmp_out 2> /dev/null; then
63
 
  new_ls=`ls -u --full-time $tmp_in`
64
 
  if test "x$old_ls" != "x$new_ls"; then
65
 
    cat >&2 <<EOF
66
 
=================================================================
67
 
$0: WARNING!!!
68
 
This operating system has the O_NOATIME file status flag,
69
 
but it is silently ignored in some cases.
70
 
Therefore, dd options like iflag=noatime may be silently ignored.
71
 
=================================================================
72
 
EOF
73
 
    warn=77
74
 
  fi
75
 
fi
76
 
 
77
 
if dd oflag=nolinks if=$tmp_in of=$tmp_out 2> /dev/null; then
78
 
  dd iflag=nolinks if=$tmp_in > /dev/null 2>&1 && fail=1
79
 
  dd iflag=nolinks < $tmp_in > /dev/null 2>&1 && fail=1
80
 
  dd oflag=nolinks < $tmp_in > $tmp_out 2>&1 || fail=1
81
 
fi
82
 
 
83
 
outbytes=`echo x | dd bs=3 ibs=10 obs=10 conv=sync 2>/dev/null | wc -c`
84
 
test "$outbytes" -eq 3 || fail=1
85
 
 
86
 
# A delay is required to trigger a failure.
87
 
# There might be some missed failures but it's unlikely.
88
 
(echo a; sleep .1; echo b) \
89
 
  | env LC_ALL=C dd bs=4 status=noxfer iflag=fullblock >out 2>err || fail=1
90
 
printf 'a\nb\n' > out_ok || framework_failure_
91
 
echo "1+0 records in
92
 
1+0 records out" > err_ok || framework_failure_
93
 
compare out_ok out || fail=1
94
 
compare err_ok err || fail=1
95
 
 
96
 
test $fail -eq 0 && fail=$warn
97
 
 
98
 
Exit $fail