[PATCH 06/10 v2] xfstests: Allow to specify RESULT_BASE directory
Lukas Czerner
lczerner at redhat.com
Thu Jul 11 05:38:01 CDT 2013
This commit adds the possibility to specify RESULT_BASE directory from
the config file, or with environment variable. The default remains the
same "$here/results/".
Signed-off-by: Lukas Czerner <lczerner at redhat.com>
---
check | 1 -
common/config | 5 +++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/check b/check
index dc972d7..428eba1 100755
--- a/check
+++ b/check
@@ -66,7 +66,6 @@ export FSTYP
SUPPORTED_TESTS="[0-9][0-9][0-9] [0-9][0-9][0-9][0-9]"
SRC_GROUPS="generic shared"
export SRC_DIR="tests"
-export RESULT_BASE=${RESULT_BASE:="$here/results"}
usage()
{
diff --git a/common/config b/common/config
index 34c99e1..39dd469 100644
--- a/common/config
+++ b/common/config
@@ -230,6 +230,11 @@ if [ -f "$HOST_OPTIONS" ]; then
fi
get_next_config() {
+ # set default RESULT_BASE
+ if [ -z "$RESULT_BASE" ]; then
+ export RESULT_BASE="$here/results/"
+ fi
+
# Mandatory Config values.
MC=""
[ -z "$EMAIL" ] && MC="$MC EMAIL"
--
1.8.3.1
More information about the xfs
mailing list