diff options
Diffstat (limited to 'tests/touch/no-rights')
-rwxr-xr-x | tests/touch/no-rights | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/touch/no-rights b/tests/touch/no-rights index 25364e287..abebc5261 100755 --- a/tests/touch/no-rights +++ b/tests/touch/no-rights @@ -24,14 +24,14 @@ print_ver_ touch touch -d '2000-01-01 00:00' t1 || framework_failure_ touch -d '2000-01-02 00:00' t2 || framework_failure_ -set x `ls -t t1 t2` +set x $(ls -t t1 t2) test "$*" = "x t2 t1" || framework_failure_ chmod 0 t1 touch -d '2000-01-03 00:00' -c t1 || fail=1 -set x `ls -t t1 t2` +set x $(ls -t t1 t2) test "$*" = "x t1 t2" || fail=1 # Also test the combination of --no-create and -a. |