Minor xfstests tweaks - report kernel version in check as in bench.

This commit is contained in:
fsgqa
2004-02-02 01:13:25 +00:00
parent 11ba65eb5b
commit c3ec644eb5
4 changed files with 35 additions and 34 deletions
+22
View File
@@ -654,6 +654,28 @@ _check_scratch_fs()
_check_filesystem $SCRATCH_DEV $SCRATCH_LOG
}
_full_fstyp_details()
{
[ -z "$FSTYP" ] && FSTYP=xfs
if [ $FSTYP = xfs ]; then
if grep 'debug 0' /proc/fs/xfs/stat >/dev/null; then
FSTYP="$FSTYP (non-debug)"
elif grep 'debug 1' /proc/fs/xfs/stat >/dev/null; then
FSTYP="$FSTYP (debug)"
fi
fi
echo $FSTYP
}
_full_platform_details()
{
os=`uname -s`
host=`hostname -s`
kernel=`uname -r`
platform=`uname -m`
echo "$os/$platform $host $kernel"
}
################################################################################
[ -d /usr/bsd ] && PATH=$PATH:/usr/bsd