blob: 5579bff299a73b996c54ca7d7f0b4e184ff69573 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2002 Silicon Graphics, Inc. All Rights Reserved.
#
# FS QA Test No. 069
#
# Test out writes with O_APPEND flag sets.
#
. ./common/preamble
_begin_fstest rw udf auto quick
status=0 # success is the default!
_register_cleanup "rm -rf $tmp.*"
# Import common functions.
. ./common/filter
# real QA test starts here
_supported_fs generic
_require_scratch
_scratch_unmount >/dev/null 2>&1
echo "*** mkfs"
_scratch_mkfs >/dev/null 2>&1 || _fail "mkfs failed"
echo "*** mount FS"
_scratch_mount
cd $SCRATCH_MNT
sizes="1 20 300 40000 3000000 12345"
for size in $sizes ; do
$here/src/append_writer $size &
echo $! $size >> pids
done
cd $here
wait
ls -lh $SCRATCH_MNT >> $seqres.full
echo "*** PIDs file" >> $seqres.full
cat $SCRATCH_MNT/pids >> $seqres.full
cat $SCRATCH_MNT/pids | while read pid size
do
echo "*** checking file with $size integers"
echo checking pid=$pid size=$size >> $seqres.full
$here/src/append_reader $SCRATCH_MNT/testfile.$pid
status=$?
[ $status -ne 0 ] && \
echo "maybe corrupt O_APPEND to $SCRATCH_MOUNT/testfile.$pid!"
echo status: $status >> $seqres.full
done
# success, all done
exit
|