[BACK]Return to setup CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfstests

File: [Development] / xfs-cmds / xfstests / setup (download)

Revision 1.5, Thu Feb 26 00:31:25 2004 UTC (13 years, 8 months ago) by alkirkco
Branch: MAIN
Changes since 1.4: +2 -1 lines

Add xfsdump support for the security extended attributes namespace.
Define variable $USE_ATTR_SECURE and turn security attribute tests off
by default (set $USE_ATTR_SECURE to "no").

#!/bin/sh
#
if ! . ./common.config
then
    echo "check: failed to source common.config"
    exit 1
fi

[ "$USE_EXTERNAL"   = yes ] || USE_EXTERNAL=no
[ "$USE_LBD_PATCH"  = yes ] || USE_LBD_PATCH=no
[ "$USE_BIG_LOOPFS" = yes ] || USE_BIG_LOOPFS=no
[ "$USE_ATTR_SECURE"= yes ] || USE_ATTR_SECURE=no
[ -z "$FSTYP" ] && FSTYP="xfs"

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]
VARIABLES: external=$USE_EXTERNAL largeblk=$USE_LBD_PATCH fstyp=$FSTYP bigloopfs=$USE_BIG_LOOPFS attrsecure=$USE_ATTR_SECURE
EOF