summaryrefslogtreecommitdiff
path: root/tests/cp/proc-zero-len.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cp/proc-zero-len.sh')
-rwxr-xr-xtests/cp/proc-zero-len.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/cp/proc-zero-len.sh b/tests/cp/proc-zero-len.sh
index 3369cfb3c..3fcd5aab1 100755
--- a/tests/cp/proc-zero-len.sh
+++ b/tests/cp/proc-zero-len.sh
@@ -37,8 +37,10 @@ cp $f exp 2>err \
# Don't simply compare contents; they might differ,
# e.g., if CPU freq changes between cat and cp invocations.
# Instead, simply compare whether they're both nonempty.
-test -s out && { rm -f out; echo nonempty > out; }
-test -s exp && { rm -f exp; echo nonempty > exp; }
+test -s out \
+ && { rm -f out; echo nonempty > out; }
+test -s exp \
+ && { rm -f exp; echo nonempty > exp; }
compare exp out || fail=1