From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay.sgi.com (relay3.corp.sgi.com [198.149.34.15]) by oss.sgi.com (Postfix) with ESMTP id 2B5C07F56 for ; Wed, 10 Jul 2013 09:00:54 -0500 (CDT) Received: from cuda.sgi.com (cuda2.sgi.com [192.48.176.25]) by relay3.corp.sgi.com (Postfix) with ESMTP id BA174AC006 for ; Wed, 10 Jul 2013 07:00:50 -0700 (PDT) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by cuda.sgi.com with ESMTP id AMQsbCu1tNpJ9Jxb for ; Wed, 10 Jul 2013 07:00:49 -0700 (PDT) Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6AE0lna022548 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 10 Jul 2013 10:00:47 -0400 From: Lukas Czerner Subject: [PATCH 02/10] xfstests: Export all important variables in common/config Date: Wed, 10 Jul 2013 16:00:31 +0200 Message-Id: <1373464839-31535-3-git-send-email-lczerner@redhat.com> In-Reply-To: <1373464839-31535-1-git-send-email-lczerner@redhat.com> References: <1373464839-31535-1-git-send-email-lczerner@redhat.com> List-Id: XFS Filesystem from SGI List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: xfs-bounces@oss.sgi.com Sender: xfs-bounces@oss.sgi.com To: xfs@oss.sgi.com Cc: Lukas Czerner Currently we do not export some of the important variables in common/config. Fix this. Signed-off-by: Lukas Czerner --- common/config | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/common/config b/common/config index 67c1498..1679acf 100644 --- a/common/config +++ b/common/config @@ -56,19 +56,19 @@ export LANG=C [ -d /usr/freeware/bin ] && PATH=$PATH:/usr/freeware/bin PATH=".:$PATH" -HOST=`hostname -s` -HOSTOS=`uname -s` -[ "$HOSTOS" = "IRIX64" ] && HOSTOS="IRIX" +export HOST=`hostname -s` +export HOSTOS=`uname -s` +[ "$HOSTOS" = "IRIX64" ] && export HOSTOS="IRIX" -MODULAR=0 # using XFS as a module or not -BOOT="/boot" # install target for kernels +export MODULAR=0 # using XFS as a module or not +export 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) -EMAIL=root@localhost # where auto-qa will send its status messages +export SOAK_PROC=3 # -p option to fsstress +export SOAK_STRESS=10000 # -n option to fsstress +export SOAK_PASSES=-1 # count of repetitions of fsstress (while soaking) +export EMAIL=root@localhost # where auto-qa will send its status messages export HOST_OPTIONS=${HOST_OPTIONS:=local.config} export CHECK_OPTIONS=${CHECK_OPTIONS:="-g auto"} export BENCH_PASSES=${BENCH_PASSES:=5} -- 1.8.3.1 _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs