Minor QA/bench updates.
[xfstests-dev.git] / common.config
index 0813e918edef7c85f4ad814229b15d0502d3a5cc..cfb0f5d4a2b1b8b88f6de6cccaeb2ec829020f4f 100644 (file)
@@ -1,7 +1,7 @@
 ##/bin/sh
 
 #
-# Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
+# Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
 # 
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of version 2 of the GNU General Public License as
 
 #
 # - This script is shared by the stress test system and the auto-qa
-#   system
+#   system (includes both regression test and benchmark components).
 # - TEST_DEV & TEST_DIR must be assigned.
 # - this script shouldn't make any assertions about filesystem
 #   validity or mountedness.
 #
 
-_readlink()
-{
-    if [ $# -ne 1 ]
-    then
-       echo "Usage: _readlink filename" 1>&2
-       exit 1
-    fi
-
-    perl -e "\$in=\"$1\";" -e '
-       $lnk = readlink($in);
-       if ($lnk =~ m!^/.*!) {
-         print "$lnk\n";
-       }
-       else {
-         chomp($dir = `dirname $in`);
-         print "$dir/$lnk\n";
-       }'
-}
+HOST=`hostname -s`
+MODULAR=0              # using XFS as a module or not
+BOOT="/boot"           # install target for kernels
+export EXTRA=${EXTRA:=-xfs-qa}
 
+# general parameters (mainly for auto-qa)
+SOAK_PROC=3            # -p option to fsstress
+SOAK_STRESS=10000      # -n option to fsstress
+SOAK_PASSES=-1         # count of repetitions of fsstress (while soaking)
+BENCH_PASSES=5         # count of repetitions of benchmarks (want averages)
+EMAIL=root@localhost   # where auto-qa will send its status messages
+export MKFS_OPTIONS=${MKFS_OPTIONS:=-bsize=4096}
+export MOUNT_OPTIONS=${MOUNT_OPTIONS:=-ologbufs=2}
+export MALLOCLIB=${MALLOCLIB:=/usr/lib/libefence.a}
 
-case `hostname -s`
+case "$HOST"
 in
     bruce)
-        TEST_DEV=/dev/sda10
-       TEST_DIR=/mnt/xfs1
-       SCRATCH_DEV=/dev/sda9
+       MODULAR=0
+       EMAIL="nathans@larry"
        SCRATCH_MNT=/mnt/xfs0
+       SCRATCH_DEV=/dev/sdb5
+       SCRATCH_RTDEV=/dev/sda9
        SCRATCH_LOGDEV=/dev/sda11
+       TEST_DIR=/mnt/xfs1
+        TEST_DEV=/dev/sda10
        TAPE_DEV=/dev/st0
        RMT_TAPE_DEV=bruce:/dev/st0
        RMT_IRIXTAPE_DEV=snort:/dev/tape
@@ -99,6 +97,8 @@ in
        SCRATCH_MNT=/mnt/xfs0
         ;;
     sagan)
+       MODULAR=1
+       EMAIL="tes@larry"
         TEST_DEV=/dev/sda6
        TEST_DIR=/mnt/xfs0
        SCRATCH_DEV=/dev/sda7
@@ -109,12 +109,16 @@ in
        RMT_TAPE_USER=guest
        ;;
     frodo)
+       MODULAR=0
+       EMAIL="nathans@larry"
         TEST_DEV=/dev/hda6
        TEST_DIR=/mnt/test
         SCRATCH_DEV=/dev/hda7
        SCRATCH_MNT=/mnt/scratch
        ;;
     troppo)
+       MODULAR=0
+       EMAIL="kaos@larry"
        TEST_DEV=/dev/hdb13
        TEST_DIR=/mnt/test
        SCRATCH_DEV=/dev/hdb14
@@ -124,9 +128,8 @@ in
     lord)
        TEST_DIR=/xfs
        TEST_DEV=/dev/sda5
-       SCRATCH_DEV=/dev/sda6
-       SCRATCH_LOGDEV=/dev/hda7
-       SCRATCH_RTDEV=/dev/hda8
+       SCRATCH_DEV=/dev/hda7
+       SCRATCH_LOGDEV=/dev/sda6
        SCRATCH_MNT=/xfs1
        ;;
     burst)
@@ -187,8 +190,26 @@ in
        SCRATCH_MNT=/mnt/sda2
        SCRATCH_LOGDEV=/dev/sda3
        ;;
+    dmfnt2)
+        TEST_DEV=/dev/sda6
+       TEST_DIR=/mnt/test
+       SCRATCH_DEV=/dev/sdc6
+       SCRATCH_MNT=/mnt/scratch
+       TAPE_DEV=/dev/st0
+       RMT_TAPE_DEV=longhorn:/dev/tape
+#      RMT_IRIXTAPE_DEV=longhorn:/dev/tape
+       RMT_TAPE_USER=guest
+       ;;
+    lab343)
+       MODULAR=0
+       EMAIL="hch@sgi.com"
+       TEST_DEV=/dev/sdb1
+       TEST_DIR=/qa/test
+       SCRATCH_DEV=/dev/sdb2
+       SCRATCH_MNT=/qa/scratch
+       ;;
     *)
-       echo "common.config: Error: need to define parameters for host `hostname -s`"
+       echo "common.config: Error: need to define parameters for host $HOST"
        exit 1
        ;;
 esac
@@ -217,6 +238,25 @@ then
     exit 1
 fi
 
+_readlink()
+{
+    if [ $# -ne 1 ]
+    then
+       echo "Usage: _readlink filename" 1>&2
+       exit 1
+    fi
+
+    perl -e "\$in=\"$1\";" -e '
+       $lnk = readlink($in);
+       if ($lnk =~ m!^/.*!) {
+         print "$lnk\n";
+       }
+       else {
+         chomp($dir = `dirname $in`);
+         print "$dir/$lnk\n";
+       }'
+}
+
 # if devfs is running expand the full /dev/.. pathname - this is what will be
 # returned by utilities such as mount
 [ -L "$TEST_DEV" ] && TEST_DEV=`_readlink $TEST_DEV`