3 # Copyright (c) 2000-2003,2006 Silicon Graphics, Inc.  All Rights Reserved.
 
   5 # This program is free software; you can redistribute it and/or
 
   6 # modify it under the terms of the GNU General Public License as
 
   7 # published by the Free Software Foundation.
 
   9 # This program is distributed in the hope that it would be useful,
 
  10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  12 # GNU General Public License for more details.
 
  14 # You should have received a copy of the GNU General Public License
 
  15 # along with this program; if not, write the Free Software Foundation,
 
  16 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
  19 # setup and check for config parameters, and in particular
 
  21 # EMAIL -           email of the script runner.
 
  22 # TEST_DIR -        scratch test directory that is in an already
 
  23 #                   mounted XFS file system, needs to be be world
 
  25 # TEST_DEV -        device for file system containing TEST_DIR
 
  28 # SCRATCH_DEV -     device you can make a scratch file system on
 
  29 # SCRATCH_MNT -     mount point for scratch file system
 
  30 # SCRATCH_LOGDEV -  scratch log device for external log testing
 
  31 # SCRATCH_RTDEV -   scratch rt dev
 
  32 # TEST_LOGDEV -     test log device for external log testing
 
  33 # TEST_RTDEV -      test rt dev
 
  34 # TAPE_DEV -        the tape device for the xfsdump tests
 
  35 # RMT_TAPE_DEV -    the remote tape device for the xfsdump tests
 
  36 # RMT_IRIXTAPE_DEV- the IRIX remote tape device for the xfsdump tests
 
  37 # RMT_TAPE_USER -   remote user for tape device
 
  39 # - These can be added to $HOST_CONFIG_DIR (witch default to ./config)
 
  40 #   below or a separate local configuration file can be used (using
 
  41 #   the HOST_OPTIONS variable).
 
  42 # - This script is shared by the stress test system and the auto-qa
 
  43 #   system (includes both regression test and benchmark components).
 
  44 # - TEST_DEV & TEST_DIR must be assigned.
 
  45 # - this script shouldn't make any assertions about filesystem
 
  46 #   validity or mountedness.
 
  49 # all tests should use a common language setting to prevent golden
 
  53 # Warning: don't put freeware before /usr/bsd on IRIX coz you'll
 
  54 #  get the wrong hostname and set your system name to -s  :)
 
  55 [ -d /usr/bsd ] && PATH=$PATH:/usr/bsd
 
  56 [ -d /usr/freeware/bin ] && PATH=$PATH:/usr/freeware/bin
 
  61 [ "$HOSTOS" = "IRIX64" ] && HOSTOS="IRIX"
 
  63 MODULAR=0               # using XFS as a module or not
 
  64 BOOT="/boot"            # install target for kernels
 
  65 export EXTRA=${EXTRA:=xfs-qa}
 
  67 # general parameters (mainly for auto-qa)
 
  68 SOAK_PROC=3             # -p option to fsstress
 
  69 SOAK_STRESS=10000       # -n option to fsstress
 
  70 SOAK_PASSES=-1          # count of repetitions of fsstress (while soaking)
 
  71 EMAIL=root@localhost    # where auto-qa will send its status messages
 
  72 export HOST_OPTIONS=${HOST_OPTIONS:=local.config}
 
  73 export CHECK_OPTIONS=${CHECK_OPTIONS:="-g auto"}
 
  74 export BENCH_PASSES=${BENCH_PASSES:=5}
 
  75 export XFS_MKFS_OPTIONS=${XFS_MKFS_OPTIONS:=-bsize=4096}
 
  78 #export DEBUG=${DEBUG:=...} # arbitrary CFLAGS really.
 
  79 export MALLOCLIB=${MALLOCLIB:=/usr/lib/libefence.a}
 
  80 export LOCAL_CONFIGURE_OPTIONS=${LOCAL_CONFIGURE_OPTIONS:=--enable-readline=yes}
 
  82 # $1 = prog to look for, $2* = default pathnames if not found in $PATH
 
  85     p=`which $1 2> /dev/null`
 
  86     if [ -n "$p" -a -x "$p" ]; then
 
 111 export MKFS_PROG="`set_prog_path mkfs`"
 
 112 [ "$MKFS_PROG" = "" ] && _fatal "mkfs not found"
 
 114 export MOUNT_PROG="`set_prog_path mount`"
 
 115 [ "$MOUNT_PROG" = "" ] && _fatal "mount not found"
 
 117 export UMOUNT_PROG="`set_prog_path umount`"
 
 118 [ "$UMOUNT_PROG" = "" ] && _fatal "umount not found"
 
 120 export FSSTRESS_PROG="`set_prog_path fsstress $PWD/ltp/fsstress`"
 
 121 [ "$FSSTRESS_PROG" = "" ] && _fatal "fsstress not found"
 
 123 export PERL_PROG="`set_prog_path perl`"
 
 124 [ "$PERL_PROG" = "" ] && _fatal "perl not found"
 
 126 export AWK_PROG="`set_prog_path awk`"
 
 127 [ "$AWK_PROG" = "" ] && _fatal "awk not found"
 
 129 export SED_PROG="`set_prog_path sed`"
 
 130 [ "$SED_PROG" = "" ] && _fatal "sed not found"
 
 132 export BC_PROG="`set_prog_path bc`"
 
 133 [ "$BC_PROG" = "" ] && _fatal "bc not found"
 
 135 export PS_ALL_FLAGS="-ef"
 
 137 export DF_PROG="`set_prog_path df`"
 
 138 [ "$DF_PROG" = "" ] && _fatal "df not found"
 
 139 [ "$HOSTOS" = "Linux" ] && export DF_PROG="$DF_PROG -T"
 
 141 export XFS_LOGPRINT_PROG="`set_prog_path xfs_logprint`"
 
 142 export XFS_REPAIR_PROG="`set_prog_path xfs_repair`"
 
 143 export XFS_CHECK_PROG="`set_prog_path xfs_check`"
 
 144 export XFS_DB_PROG="`set_prog_path xfs_db`"
 
 145 export XFS_GROWFS_PROG=`set_prog_path xfs_growfs`
 
 146 export XFS_IO_PROG="`set_prog_path xfs_io`"
 
 147 export XFS_PARALLEL_REPAIR_PROG="`set_prog_path xfs_prepair`"
 
 148 export XFS_PARALLEL_REPAIR64_PROG="`set_prog_path xfs_prepair64`"
 
 149 export XFSDUMP_PROG="`set_prog_path xfsdump`"
 
 150 export XFSRESTORE_PROG="`set_prog_path xfsrestore`"
 
 151 export XFSINVUTIL_PROG="`set_prog_path xfsinvutil`"
 
 153 # Generate a comparable xfsprogs version number in the form of
 
 154 # major * 10000 + minor * 100 + release
 
 157 # xfs_db version 2.9.7
 
 160 _version=`$XFS_DB_PROG -V | $AWK_PROG '
 
 162                 if (split($3,ver,".") == 3)
 
 163                         print (ver[1] * 10000) + (ver[2] * 100) + ver[3];
 
 165 [ -z "$_version" ] && _fatal "xfsprogs version cannot be found"
 
 166 export XFSPROGS_VERSION="$_version"
 
 170         export MKFS_XFS_PROG="`set_prog_path mkfs_xfs`"
 
 171         export MKFS_UDF_PROG="`set_prog_path mkfs_udf`"
 
 172         export XFS_FSR_PROG="`set_prog_path /usr/etc/fsr_xfs`"
 
 173         export MKFS_NFS_PROG="false"
 
 176         export MKFS_XFS_PROG="`set_prog_path mkfs.xfs`"
 
 177         export MKFS_UDF_PROG="`set_prog_path mkudffs`"
 
 178         export XFS_FSR_PROG="`set_prog_path xfs_fsr`"
 
 179         export MKFS_NFS_PROG="false"
 
 185   [ "$HOST_CONFIG_DIR" ] || HOST_CONFIG_DIR=`pwd`/configs
 
 187   [ -f /etc/xfsqa.config ]             && . /etc/xfsqa.config
 
 188   [ -f $HOST_CONFIG_DIR/$HOST ]        && . $HOST_CONFIG_DIR/$HOST
 
 189   [ -f $HOST_CONFIG_DIR/$HOST.config ] && . $HOST_CONFIG_DIR/$HOST.config
 
 191   #  Mandatory Config values.
 
 193   [ -z "$EMAIL" ]          && MC="$MC EMAIL"
 
 194   [ -z "$TEST_DIR" ]       && MC="$MC TEST_DIR"
 
 195   [ -z "$TEST_DEV" ]       && MC="$MC TEST_DEV"
 
 197   if [ -n "$MC" ]; then
 
 198     echo "Warning: need to define parameters for host $HOST"
 
 199     echo "       or set variables:"
 
 205 if [ -f "$HOST_OPTIONS" ]; then
 
 211 echo $TEST_DEV | grep -q ":" > /dev/null 2>&1
 
 212 if [ ! -b "$TEST_DEV" -a "$?" != "0" ]; then
 
 213     echo "common.config: Error: \$TEST_DEV ($TEST_DEV) is not a block device or a NFS filesystem"
 
 217 if [ ! -d "$TEST_DIR" ]; then
 
 218     echo "common.config: Error: \$TEST_DIR ($TEST_DIR) is not a directory"
 
 222 echo $SCRATCH_DEV | grep -q ":" > /dev/null 2>&1
 
 223 if [ ! -z "$SCRATCH_DEV" -a ! -b "$SCRATCH_DEV" -a "$?" != "0" ]; then
 
 224     echo "common.config: Error: \$SCRATCH_DEV ($SCRATCH_DEV) is not a block device or a NFS filesystem"
 
 228 if [ ! -z "$SCRATCH_MNT" -a ! -d "$SCRATCH_MNT" ]; then
 
 229     echo "common.config: Error: \$SCRATCH_MNT ($SCRATCH_MNT) is not a directory"
 
 233 # make sure this script returns success