mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
shared/298: fix random deletion when filenames contain spaces
Correct the deletion loop in this test to work properly when there are files in $here that have spaces in their name. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Allison Henderson <allison.henderson@oracle.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
committed by
Eryu Guan
parent
0de642617f
commit
75c9b616fc
+1
-1
@@ -163,7 +163,7 @@ get_holes $img_file > $fiemap_ref
|
||||
|
||||
# Delete some files
|
||||
find $loop_mnt -type f -print | $AWK_PROG \
|
||||
'BEGIN {srand()}; {if(rand() > 0.7) print $1;}' | xargs rm
|
||||
'BEGIN {srand()}; {if(rand() > 0.7) printf("%s\0", $0);}' | xargs -0 rm
|
||||
echo "done."
|
||||
|
||||
echo -n "Running fstrim..."
|
||||
|
||||
Reference in New Issue
Block a user