diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-29 08:31:26 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-29 17:29:32 +0200 |
commit | 6c497c6c2d8f917ec88292f3952c28f5fd4d7a86 (patch) | |
tree | 88ab7c003a64d5ad83b469538272856cd589b078 /tests/cp | |
parent | 9e59f8c47ca1d8421efdd930db90fee075557d74 (diff) | |
download | coreutils-6c497c6c2d8f917ec88292f3952c28f5fd4d7a86.tar.xz |
tests: cp/reflink-auto guard against a pathological $TMPDIR
* tests/cp/reflink-auto: Add quotes.
Diffstat (limited to 'tests/cp')
-rwxr-xr-x | tests/cp/reflink-auto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cp/reflink-auto b/tests/cp/reflink-auto index ff2b1b39b..d1f6b2bca 100755 --- a/tests/cp/reflink-auto +++ b/tests/cp/reflink-auto @@ -26,7 +26,7 @@ fi cleanup_() { rm -rf "$other_partition_tmpdir"; } . "$abs_srcdir/other-fs-tmpdir" a_other="$other_partition_tmpdir/a" -rm -f $a_other || framework_failure +rm -f "$a_other" || framework_failure echo non_zero_size > "$a_other" |