summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x0155
-rwxr-xr-x0624
-rw-r--r--062.out6
-rwxr-xr-x08312
-rwxr-xr-x1174
-rwxr-xr-x1204
-rwxr-xr-x1922
7 files changed, 19 insertions, 18 deletions
diff --git a/015 b/015
index 8f2be7cd..4206b93d 100755
--- a/015
+++ b/015
@@ -48,13 +48,14 @@ _free()
}
# real QA test starts here
-_supported_fs xfs
+_supported_fs generic
_supported_os IRIX Linux
_require_scratch
_require_nobigloopfs
-_scratch_mkfs_xfs -d size=50m >/dev/null || _fail "mkfs failed"
+_scratch_mkfs_sized `expr 50 \* 1024 \* 1024` >/dev/null 2>&1 \
+ || _fail "mkfs failed"
_scratch_mount || _fail "mount failed"
out=$SCRATCH_MNT/fillup.$$
rm -f $seq.full
diff --git a/062 b/062
index 5cb6f92a..a6e4bc83 100755
--- a/062
+++ b/062
@@ -71,7 +71,7 @@ _create_test_bed()
}
# real QA test starts here
-_supported_fs xfs udf nfs
+_supported_fs generic
_supported_os Linux
_require_scratch
@@ -80,7 +80,7 @@ _require_attrs
rm -f $tmp.backup1 $tmp.backup2 $seq.full
# real QA test starts here
-_scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
+_scratch_mkfs > /dev/null 2>&1 || _fail "mkfs failed"
_scratch_mount || _fail "mount failed"
_create_test_bed
diff --git a/062.out b/062.out
index 73fd628f..1d5a0947 100644
--- a/062.out
+++ b/062.out
@@ -1,10 +1,4 @@
QA output created by 062
-meta-data=DDEV isize=XXX agcount=N, agsize=XXX blks
-data = bsize=XXX blocks=XXX, imaxpct=PCT
- = sunit=XXX swidth=XXX, unwritten=X
-naming =VERN bsize=XXX
-log =LDEV bsize=XXX blocks=XXX
-realtime =RDEV extsz=XXX blocks=XXX, rtextents=XXX
*** create test bed
SCRATCH_MNT
SCRATCH_MNT/dev
diff --git a/083 b/083
index 7342baa7..441284e4 100755
--- a/083
+++ b/083
@@ -54,7 +54,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
. ./common.filter
# real QA test starts here
-_supported_fs xfs
+_supported_fs generic
_supported_os IRIX Linux
_require_scratch
@@ -72,8 +72,14 @@ workout()
umount $SCRATCH_DEV >/dev/null 2>&1
echo "*** mkfs -dsize=$fsz,agcount=$ags" >>$seq.full
echo "" >>$seq.full
- _scratch_mkfs_xfs -dsize=$fsz,agcount=$ags >>$seq.full 2>&1 \
- || _fail "size=$fsz,agcount=$ags mkfs failed"
+ if [ $FSTYP = xfs ]
+ then
+ _scratch_mkfs_xfs -dsize=$fsz,agcount=$ags >>$seq.full 2>&1 \
+ || _fail "size=$fsz,agcount=$ags mkfs failed"
+ else
+ _scratch_mkfs_sized $fsz >>$seq.full 2>&1 \
+ || _fail "size=$fsz mkfs failed"
+ fi
_scratch_mount >>$seq.full 2>&1 \
|| _fail "mount failed"
diff --git a/117 b/117
index dd880cbb..fcf04858 100755
--- a/117
+++ b/117
@@ -51,7 +51,7 @@ _cleanup()
. ./common.attr
# real QA test starts here
-_supported_fs xfs
+_supported_fs generic
_supported_os IRIX Linux
_setup_testdir
@@ -62,7 +62,7 @@ rm -f $seq.full
umount $SCRATCH_DEV >/dev/null 2>&1
echo "*** MKFS ***" >>$seq.full
echo "" >>$seq.full
-_scratch_mkfs_xfs >>$seq.full 2>&1 \
+_scratch_mkfs >>$seq.full 2>&1 \
|| _fail "mkfs failed"
_scratch_mount >>$seq.full 2>&1 \
|| _fail "mount failed"
diff --git a/120 b/120
index bf1e6170..010a8f34 100755
--- a/120
+++ b/120
@@ -37,11 +37,11 @@ trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
. ./common.filter
# real QA test starts here
-_supported_fs xfs
+_supported_fs generic
_supported_os Linux IRIX
_require_scratch
-_scratch_mkfs_xfs >/dev/null 2>&1
+_scratch_mkfs >/dev/null 2>&1 || _fail "mkfs failed"
_compare_access_times()
{
diff --git a/192 b/192
index d8301d5f..4b69147e 100755
--- a/192
+++ b/192
@@ -45,7 +45,7 @@ _access_time()
# real QA test starts here
-_supported_fs xfs udf nfs
+_supported_fs generic
_supported_os Linux
#delay=150
#delay=75