diff options
author | Jim Meyering <jim@meyering.net> | 1999-11-13 23:20:14 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-11-13 23:20:14 +0000 |
commit | 91ac2fec340bf80ad6b0d312217d765d5ae5ab44 (patch) | |
tree | e566f536c154c822ed406b23ef73379228448e2a /tests/touch/no-rights | |
parent | 55fa0c6a12d42fb53fe7dc510c48f17272093ff2 (diff) | |
download | coreutils-91ac2fec340bf80ad6b0d312217d765d5ae5ab44.tar.xz |
# Also test the combination of --no-create and -a.
Diffstat (limited to 'tests/touch/no-rights')
-rwxr-xr-x | tests/touch/no-rights | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/touch/no-rights b/tests/touch/no-rights index ba22382ba..facc7acd2 100755 --- a/tests/touch/no-rights +++ b/tests/touch/no-rights @@ -29,6 +29,9 @@ touch -c $t1 || fail=1 set x `ls -t $t1 $t2` test "$*" = "x $t1 $t2" || fail=1 +# Also test the combination of --no-create and -a. +touch -a --no-create $t1 || fail=1 + rm -f $t1 $t2 exit $fail |