common/rc: generalize _get_filesize()

There are some testcases use below two kind of commands to get file
size, generalize the second way as global function _get_filesize()
to simply codes.

1. ls -l $1 | $AWK_PROG '{print $5}'
2. stat -c %s $1

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
Chao Yu
2019-11-01 18:28:21 +08:00
committed by Eryu Guan
parent eff343fb5d
commit 11d3da6a7f
18 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -777,7 +777,7 @@ _fill_fs()
fi
if [ -f $dir/$file_count ]; then
bytes_written=$(stat -c '%s' $dir/$file_count)
bytes_written=$(_get_filesize $dir/$file_count)
fi
# If there was no room to make the file, then divide it in
+5
View File
@@ -165,6 +165,11 @@ if [ ! -z "$REPORT_LIST" ]; then
_assert_report_list
fi
_get_filesize()
{
stat -c %s "$1"
}
_mount()
{
$MOUNT_PROG `_mount_ops_filter $*`
+2 -2
View File
@@ -183,7 +183,7 @@ _fsv_scratch_corrupt_bytes()
sync # Sync to avoid unwritten extents
cat > $tmp.bytes
local end=$(( offset + $(stat -c %s $tmp.bytes ) ))
local end=$(( offset + $(_get_filesize $tmp.bytes ) ))
# For each extent that intersects the requested range in order, add a
# command that writes the next part of the data to that extent.
@@ -234,7 +234,7 @@ _fsv_scratch_corrupt_merkle_tree()
ext4|f2fs)
# ext4 and f2fs store the Merkle tree after the file contents
# itself, starting at the next 65536-byte aligned boundary.
(( offset += ($(stat -c %s $file) + 65535) & ~65535 ))
(( offset += ($(_get_filesize $file) + 65535) & ~65535 ))
_fsv_scratch_corrupt_bytes $file $offset
;;
*)
+1 -1
View File
@@ -54,7 +54,7 @@ touch $SCRATCH_MNT/bar
# supposed to happen and for example it made inode eviction enter an infinite
# loop that dumped a warning trace on each iteration.
$CLONER_PROG -s 0 -d 65536 -l 0 $SCRATCH_MNT/foo $SCRATCH_MNT/bar
echo "bar file size after clone operation: $(stat -c %s $SCRATCH_MNT/bar)"
echo "bar file size after clone operation: `_get_filesize $SCRATCH_MNT/bar`"
status=0
exit
-5
View File
@@ -24,11 +24,6 @@ _cleanup()
rm -rf $TEST_DIR/fsstress.$$.*
}
_filesize()
{
ls -l $1 | $AWK_PROG '{print " filesize = " $5}'
}
# get standard environment, filters and checks
. ./common/rc
. ./common/filter
+1 -1
View File
@@ -73,7 +73,7 @@ echo "Bytes written until ENOSPC:" >>$seqres.full
du $SCRATCH_MNT/tmp1 >>$seqres.full
# And at least some of it should succeed.
_filesize=`ls -l $SCRATCH_MNT/tmp1 | awk '{print $5}'`
_filesize=`_get_filesize $SCRATCH_MNT/tmp1`
[ $_filesize -lt $((128 * 1024)) ] && \
_fail "Partial write until enospc failed; wrote $_filesize bytes."
+4 -4
View File
@@ -57,7 +57,7 @@ test01()
$here/src/seek_copy_test $src $dest
test $(stat -c "%s" $src) = $(stat -c "%s" $dest) ||
test $(_get_filesize $src) = $(_get_filesize $dest) ||
_fail "TEST01: file size check failed"
cmp $src $dest || _fail "TEST01: file bytes check failed"
@@ -85,7 +85,7 @@ test02()
$here/src/seek_copy_test $src $dest
test $(stat -c "%s" $src) = $(stat -c "%s" $dest) ||
test $(_get_filesize $src) = $(_get_filesize $dest) ||
_fail "TEST02: file size check failed"
cmp $src $dest || _fail "TEST02: file bytes check failed"
@@ -127,7 +127,7 @@ test03()
echo >>$seqres.full
$here/src/seek_copy_test $src $dest
test $(stat -c "%s" $src) = $(stat -c "%s" $dest) ||
test $(_get_filesize $src) = $(_get_filesize $dest) ||
_fail "TEST03: file size check failed"
cmp $src $dest || _fail "TEST03: file bytes check failed"
@@ -169,7 +169,7 @@ test04()
echo >>$seqres.full
$here/src/seek_copy_test $src $dest
test $(stat -c "%s" $src) = $(stat -c "%s" $dest) ||
test $(_get_filesize $src) = $(_get_filesize $dest) ||
_fail "TEST04: file size check failed"
cmp $src $dest || _fail "TEST04: file bytes check failed"
+1 -1
View File
@@ -66,7 +66,7 @@ done
echo "Try to kill reflink after a shorter period of time"
kill_after=2 # give us a shorter time to die
n=$(stat -c '%s' $testdir/file1)
n=$(_get_filesize $testdir/file1)
echo "performing kill test on $n bytes..." >> $seqres.full
touch $TEST_DIR/before
$TIMEOUT_PROG -s INT ${kill_after}s $XFS_IO_PROG -f -c "reflink $testdir/file1 0 $n $n" $testdir/file1 >> $seqres.full 2>&1
+1 -1
View File
@@ -66,7 +66,7 @@ done
echo "Try to kill reflink after a shorter period of time"
kill_after=2 # give us a shorter time to die
n=$(stat -c '%s' $testdir/file1)
n=$(_get_filesize $testdir/file1)
echo "performing kill test on $n bytes..." >> $seqres.full
touch $TEST_DIR/before
urk=$($TIMEOUT_PROG -s KILL ${kill_after}s $XFS_IO_PROG -f -c "reflink $testdir/file1 0 $n $n" $testdir/file1 >> $seqres.full 2>&1)
+1 -1
View File
@@ -52,7 +52,7 @@ $XFS_IO_PROG -f -c 'falloc -k 0 $(($avail_begin/2))' \
$TEST_DIR/testfile.$seq >>$seqres.full 2>&1
# Verify the file size, it should keep unchanged as 0 in this case
fsize=`ls -l $TEST_DIR/testfile.$seq | awk '{print $5}'`
fsize=`_get_filesize $TEST_DIR/testfile.$seq`
[ "$fsize" -eq 0 ] || _fail "File size is changed to ($fsize Bytes)"
# Truncate the file size back to 0
+1 -1
View File
@@ -89,7 +89,7 @@ while true; do
file_size=0
if [ -e $file ]; then
file_size=$(stat -c %s $file)
file_size=$(_get_filesize $file)
fi
# We shouldn't have been able to write more data than we had space for.
+4 -4
View File
@@ -60,9 +60,9 @@ swapfile_cycle() {
# Create a swap file with a large discontiguous range(?)
echo "large discontig swap" | tee -a $seqres.full
_pwrite_byte 0x58 0 $((len * 2)) $swapfile >> $seqres.full
old_sz="$(stat -c '%s' $swapfile)"
old_sz="$(_get_filesize $swapfile)"
$XFS_IO_PROG -c "fcollapse $((len / 2)) $len" $swapfile >> $seqres.full 2>&1
new_sz="$(stat -c '%s' $swapfile)"
new_sz="$(_get_filesize $swapfile)"
if [ $old_sz -gt $new_sz ]; then
swapfile_cycle $swapfile
fi
@@ -71,9 +71,9 @@ rm -f $swapfile
# Create a swap file with a small discontiguous range(?)
echo "small discontig swap" | tee -a $seqres.full
_pwrite_byte 0x58 0 $((len + 1024)) $swapfile >> $seqres.full
old_sz="$(stat -c '%s' $swapfile)"
old_sz="$(_get_filesize $swapfile)"
$XFS_IO_PROG -c "fcollapse 66560 1024" $swapfile >> $seqres.full 2>&1
new_sz="$(stat -c '%s' $swapfile)"
new_sz="$(_get_filesize $swapfile)"
if [ $old_sz -gt $new_sz ]; then
swapfile_cycle $swapfile
fi
+1 -1
View File
@@ -39,7 +39,7 @@ chmod a+rwx $SCRATCH_MNT
$XFS_IO_PROG -f -c "pwrite -S 0x18 0 1m" $SCRATCH_MNT/foo >>$seqres.full
su -s/bin/bash - $qa_user -c "ulimit -f 64 ; $XFS_IO_PROG -f -c \"reflink $SCRATCH_MNT/foo\" $SCRATCH_MNT/bar" >> $seqres.full 2>&1
sz="$(stat -c '%s' $SCRATCH_MNT/bar)"
sz="$(_get_filesize $SCRATCH_MNT/bar)"
if [ "$sz" -ne 0 ] && [ "$sz" -ne 65536 ]; then
echo "Oddball file size $sz??"
fi
+2 -2
View File
@@ -163,10 +163,10 @@ head -c 100000 /dev/urandom > $fsv_orig_file
cp $fsv_orig_file $fsv_file
_fsv_enable $fsv_file >> $seqres.full
cmp $fsv_file $fsv_orig_file
stat -c %s $fsv_file
_get_filesize $fsv_file
_scratch_cycle_mount
cmp $fsv_file $fsv_orig_file
stat -c %s $fsv_file
_get_filesize $fsv_file
_fsv_scratch_begin_subtest "Trying to measure non-verity file fails with ENODATA"
echo foo > $fsv_file
+1 -1
View File
@@ -99,7 +99,7 @@ check_file_size()
{
local target=$1 expected_size=$2 actual_size
actual_size=$(stat -c "%s" $target)
actual_size=$(_get_filesize $target)
[ "$actual_size" == "$expected_size" ] || echo "Expected file size $expected_size but actual size is $actual_size"
}
+1 -1
View File
@@ -53,7 +53,7 @@ _spec_prealloc_file()
# write a 4k aligned amount of data to keep the calculations simple
$XFS_IO_PROG -c "pwrite 0 128m" $file >> $seqres.full
size=`stat -c "%s" $file`
size=`_get_filesize $file`
blocks=`stat -c "%b" $file`
blocksize=`stat -c "%B" $file`
+1 -1
View File
@@ -93,7 +93,7 @@ _consume_freesp $SCRATCH_MNT/spc
# space. Note that we start at the end of the file and work backwards as a
# reverse allocation pattern increases the chances of both left and right sparse
# record merges.
offset=`stat -c "%s" $SCRATCH_MNT/spc`
offset=`_get_filesize $SCRATCH_MNT/spc`
offset=$((offset - $CHUNK_SIZE * 2))
while [ $offset -ge 0 ]; do
$XFS_IO_PROG -c "fpunch $offset $CHUNK_SIZE" $SCRATCH_MNT/spc \
+1 -1
View File
@@ -61,7 +61,7 @@ done
$XFS_IO_PROG -xc "resblks 16" $SCRATCH_MNT >> $seqres.full 2>&1
dd if=/dev/zero of=$SCRATCH_MNT/file bs=4k >> $seqres.full 2>&1
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/file >> $seqres.full 2>&1
size=`stat -c %s $SCRATCH_MNT/file`
size=`_get_filesize $SCRATCH_MNT/file`
for i in $(seq 0 8192 $size); do
$XFS_IO_PROG -c "fpunch $i 4k" $SCRATCH_MNT/file >> $seqres.full 2>&1
done