mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfstests: Export all important variables in common/config
Currently we do not export some of the important variables in common/config. Fix this. Signed-off-by: Lukas Czerner <lczerner@redhat.com> Reviewed-by: Chandra Seetharaman <sekharan@us.ibm.com> Signed-off-by: Rich Johnston <rjohnston@sgi.com>
This commit is contained in:
committed by
Rich Johnston
parent
060dd14cc8
commit
c8527d1c8a
+9
-9
@@ -56,19 +56,19 @@ export LANG=C
|
|||||||
[ -d /usr/freeware/bin ] && PATH=$PATH:/usr/freeware/bin
|
[ -d /usr/freeware/bin ] && PATH=$PATH:/usr/freeware/bin
|
||||||
PATH=".:$PATH"
|
PATH=".:$PATH"
|
||||||
|
|
||||||
HOST=`hostname -s`
|
export HOST=`hostname -s`
|
||||||
HOSTOS=`uname -s`
|
export HOSTOS=`uname -s`
|
||||||
[ "$HOSTOS" = "IRIX64" ] && HOSTOS="IRIX"
|
[ "$HOSTOS" = "IRIX64" ] && export HOSTOS="IRIX"
|
||||||
|
|
||||||
MODULAR=0 # using XFS as a module or not
|
export MODULAR=0 # using XFS as a module or not
|
||||||
BOOT="/boot" # install target for kernels
|
export BOOT="/boot" # install target for kernels
|
||||||
export EXTRA=${EXTRA:=xfs-qa}
|
export EXTRA=${EXTRA:=xfs-qa}
|
||||||
|
|
||||||
# general parameters (mainly for auto-qa)
|
# general parameters (mainly for auto-qa)
|
||||||
SOAK_PROC=3 # -p option to fsstress
|
export SOAK_PROC=3 # -p option to fsstress
|
||||||
SOAK_STRESS=10000 # -n option to fsstress
|
export SOAK_STRESS=10000 # -n option to fsstress
|
||||||
SOAK_PASSES=-1 # count of repetitions of fsstress (while soaking)
|
export SOAK_PASSES=-1 # count of repetitions of fsstress (while soaking)
|
||||||
EMAIL=root@localhost # where auto-qa will send its status messages
|
export EMAIL=root@localhost # where auto-qa will send its status messages
|
||||||
export HOST_OPTIONS=${HOST_OPTIONS:=local.config}
|
export HOST_OPTIONS=${HOST_OPTIONS:=local.config}
|
||||||
export CHECK_OPTIONS=${CHECK_OPTIONS:="-g auto"}
|
export CHECK_OPTIONS=${CHECK_OPTIONS:="-g auto"}
|
||||||
export BENCH_PASSES=${BENCH_PASSES:=5}
|
export BENCH_PASSES=${BENCH_PASSES:=5}
|
||||||
|
|||||||
Reference in New Issue
Block a user