On Thu, 2013-07-11 at 12:38 +0200, Lukas Czerner wrote:
> 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@xxxxxxxxxx>
Reviewed-by: Chandra Seetharaman <sekharan@xxxxxxxxxx>
> ---
> 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"
|