Files
apfstests/setup
T

95 lines
2.4 KiB
Bash
Raw Normal View History

2010-04-29 09:59:24 +10:00
#!/bin/bash
#
2009-06-05 15:41:14 -05:00
# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it would be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
2016-02-08 09:27:05 +11:00
usage()
{
echo "Usage: $0 [options]"'
2016-02-08 09:27:06 +11:00
-s section run only specified section(s) from config file
-S section exclude the specified section from the config file
2016-02-08 09:27:05 +11:00
'
exit 0
}
while [ $# -gt 0 ]; do
case "$1" in
-\? | -h | --help) usage ;;
-s) RUN_SECTION="$RUN_SECTION $2"; shift ;;
2016-02-08 09:27:06 +11:00
-S) EXCLUDE_SECTION="$EXCLUDE_SECTION $2"; shift ;;
2016-02-08 09:27:05 +11:00
*) usage ;;
esac
shift
done
2013-03-29 04:49:55 +00:00
if ! . ./common/config
then
2013-03-29 04:49:55 +00:00
echo "check: failed to source common/config"
exit 1
fi
2016-02-08 09:27:05 +11:00
for section in $HOST_OPTIONS_SECTIONS; do
OLD_FSTYP=$FSTYP
OLD_MOUNT_OPTIONS=$MOUNT_OPTIONS
get_next_config $section
# Do we need to run only some sections ?
if [ ! -z "$RUN_SECTION" ]; then
skip=true
for s in $RUN_SECTION; do
if [ $section == $s ]; then
skip=false
break;
fi
done
if $skip; then
continue
fi
fi
2016-02-08 09:27:06 +11:00
# Did this section get excluded?
if [ ! -z "$EXCLUDE_SECTION" ]; then
skip=false
for s in $EXCLUDE_SECTION; do
if [ $section == $s ]; then
skip=true
break;
fi
done
if $skip; then
continue
fi
fi
2016-02-08 09:27:05 +11:00
[ "$USE_EXTERNAL" = yes ] || USE_EXTERNAL=no
[ "$USE_LBD_PATCH" = yes ] || USE_LBD_PATCH=no
[ "$LARGE_SCRATCH_DEV" = yes ] || LARGE_SCRATCH_DEV=no
[ "$USE_ATTR_SECURE" = yes ] || USE_ATTR_SECURE=no
[ -z "$FSTYP" ] && FSTYP="xfs"
cat <<EOF
SECTION -- $section
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]
2003-07-17 04:09:59 +00:00
SCRATCH: MNT=$SCRATCH_MNT DEV=$SCRATCH_DEV rt=[$SCRATCH_RTDEV] log=[$SCRATCH_LOGDEV]
VARIABLES: external=$USE_EXTERNAL largeblk=$USE_LBD_PATCH fstyp=$FSTYP
large_scratch_dev=$LARGE_SCRATCH_DEV attrsecure=$USE_ATTR_SECURE
2016-02-08 09:27:05 +11:00
--------
EOF
2016-02-08 09:27:05 +11:00
done