tests: factor 350 fail=0 initializations into test-lib.sh
[platform/upstream/coreutils.git] / tests / misc / truncate-fail-diag
1 #!/bin/sh
2 # make sure truncate gives reasonable diagnostics
3 # Note open() checks for trailing '/' before checking for existance
4 # open (".", O_CREAT & (O_WRONLY | O_RDWR), ...) -> EISDIR
5 # open ("missing/", O_CREAT & (O_WRONLY | O_RDWR), ...) -> EISDIR
6 # open ("missing/file", O_CREAT & (O_WRONLY | O_RDWR), ...) -> ENOENT
7
8 # Copyright (C) 2008-2009 Free Software Foundation, Inc.
9
10 # This program is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
14
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19
20 # You should have received a copy of the GNU General Public License
21 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23 if test "$VERBOSE" = yes; then
24   set -x
25   truncate --version
26 fi
27
28 . $srcdir/test-lib.sh
29 skip_if_root_
30
31
32 d1=no
33
34 dir=$d1/such-dir
35 truncate -s0 $dir > out 2>&1 && fail=1
36 cat <<EOF > exp
37 truncate: cannot open \`$dir' for writing: No such file or directory
38 EOF
39 compare out exp || fail=1
40
41 dir=$d1/
42 truncate -s0 $dir > out 2>&1 && fail=1
43 #The following can be returned at least
44 #truncate: cannot open \`$dir' for writing: Not a directory
45 #truncate: cannot open \`$dir' for writing: Is a directory
46
47 Exit $fail