Minor QA updates and a script for dumping local QA config information.

Cosmetic update.
This commit is contained in:
fsgqa
2003-05-22 06:14:09 +00:00
parent 8050efd492
commit 0b6bf4b67c
3 changed files with 20 additions and 4 deletions
+2 -2
View File
@@ -167,8 +167,8 @@ FULL_MOUNT_OPTIONS=`_scratch_mount_options`
# $OUT is the report which will ultimately be sent, keep it tidy. # $OUT is the report which will ultimately be sent, keep it tidy.
cat >$OUT <<EOF cat >$OUT <<EOF
bench: MKFS_OPTIONS -- $FULL_MKFS_OPTIONS MKFS_OPTIONS -- $FULL_MKFS_OPTIONS
bench: MOUNT_OPTIONS --$FULL_MOUNT_OPTIONS MOUNT_OPTIONS -- $FULL_MOUNT_OPTIONS
EOF EOF
+2 -2
View File
@@ -151,7 +151,7 @@ timestamp=${TIMESTAMP:=false}
[ -f check.time ] || touch check.time [ -f check.time ] || touch check.time
FULL_MKFS_OPTIONS=`_scratch_mkfs_options` FULL_MKFS_OPTIONS=`_scratch_mkfs_options`
echo check: MKFS_OPTIONS -- $FULL_MKFS_OPTIONS echo "MKFS_OPTIONS -- $FULL_MKFS_OPTIONS"
umount $SCRATCH_DEV 2>/dev/null umount $SCRATCH_DEV 2>/dev/null
# call the overridden mkfs.xfs - make sure the FS is built # call the overridden mkfs.xfs - make sure the FS is built
# the same as we'll create it later. # the same as we'll create it later.
@@ -164,7 +164,7 @@ then
fi fi
FULL_MOUNT_OPTIONS=`_scratch_mount_options` FULL_MOUNT_OPTIONS=`_scratch_mount_options`
echo check: MOUNT_OPTIONS -- $FULL_MOUNT_OPTIONS echo "MOUNT_OPTIONS -- $FULL_MOUNT_OPTIONS"
# call the overridden mount - make sure the FS mounts with # call the overridden mount - make sure the FS mounts with
# the same options that we'll mount with later. # the same options that we'll mount with later.
if ! _scratch_mount >$tmp.err 2>&1 if ! _scratch_mount >$tmp.err 2>&1
Executable
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh
#
if ! . ./common.config
then
echo "check: failed to source common.config"
exit 1
fi
use="(external=no)"
[ "$USE_EXTERNAL" = yes ] && use="(external=yes)"
cat <<EOF
TEST: DIR=$TEST_DIR DEV=$TEST_DEV rt=[$TEST_RTDEV] log=[$TEST_LOGDEV]
TAPE: dev=[$TAPE_DEV] rmt=[$RMT_TAPE_DEV] rmtirix=[$RMT_TAPE_USER@$RMT_IRIXTAPE_DEV]
SCRATCH: MNT=$SCRATCH_MNT DEV=$SCRATCH_DEV rt=[$SCRATCH_RTDEV] log=[$SCRATCH_LOGDEV] $use
EOF