summaryrefslogtreecommitdiff
path: root/tests/mv/update
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mv/update')
-rwxr-xr-xtests/mv/update10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/mv/update b/tests/mv/update
index d002a183b..f0beb4076 100755
--- a/tests/mv/update
+++ b/tests/mv/update
@@ -31,15 +31,15 @@ for interactive in '' -i; do
# mistakenly elicit a prompt.
$cp_or_mv $interactive --update old new < /dev/null > out 2>&1 || fail=1
test -s out && fail=1
- case "`cat new`" in new) ;; *) fail=1 ;; esac
- case "`cat old`" in old) ;; *) fail=1 ;; esac
+ case "$(cat new)" in new) ;; *) fail=1 ;; esac
+ case "$(cat old)" in old) ;; *) fail=1 ;; esac
done
done
# This will actually perform the rename.
mv --update new old || fail=1
test -f new && fail=1
-case "`cat old`" in new) ;; *) fail=1 ;; esac
+case "$(cat old)" in new) ;; *) fail=1 ;; esac
# Restore initial conditions.
echo old > old || fail=1
@@ -48,7 +48,7 @@ echo new > new || fail=1
# This will actually perform the copy.
cp --update new old || fail=1
-case "`cat old`" in new) ;; *) fail=1 ;; esac
-case "`cat new`" in new) ;; *) fail=1 ;; esac
+case "$(cat old)" in new) ;; *) fail=1 ;; esac
+case "$(cat new)" in new) ;; *) fail=1 ;; esac
Exit $fail