Numerous changes to QA scripts allowing tests to run with external log/rt devices; also allow multiple mkfs/mount options at once now.

This commit is contained in:
fsgqa
2003-05-22 04:16:45 +00:00
parent 0cac704bdf
commit 8050efd492
40 changed files with 311 additions and 282 deletions
+4 -6
View File
@@ -61,10 +61,8 @@ _do_die_on_error=y
test=$SCRATCH_MNT/test
# make filesystem on scratch using the defaults
_do 'make filesystem on $SCRATCH_DEV' \
'mkfs_xfs $SCRATCH_DEV'
_do 'mount filesytem' \
'mount -t xfs $SCRATCH_DEV $SCRATCH_MNT'
_do 'make filesystem on $SCRATCH_DEV' '_scratch_mkfs_xfs'
_do 'mount filesytem' '_scratch_mount'
# create test files and set acls
acls="
@@ -98,8 +96,8 @@ list_acls()
echo "acls before repair:"
list_acls
_do 'unmount $SCRATCH_DEV' 'umount $SCRATCH_DEV'
_do 'repair filesystem' 'xfs_repair $SCRATCH_DEV'
_do 'mount filesytem' 'mount -t xfs $SCRATCH_DEV $SCRATCH_MNT'
_do 'repair filesystem' '_scratch_xfs_repair'
_do 'mount filesytem' '_scratch_mount'
echo "acls after repair: "
list_acls