From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay.sgi.com (relay2.corp.sgi.com [137.38.102.29]) by oss.sgi.com (Postfix) with ESMTP id BA85129E0D for ; Wed, 1 May 2013 03:32:19 -0500 (CDT) Received: from cuda.sgi.com (cuda3.sgi.com [192.48.176.15]) by relay2.corp.sgi.com (Postfix) with ESMTP id A7BE030406A for ; Wed, 1 May 2013 01:32:19 -0700 (PDT) Received: from ipmail07.adl2.internode.on.net (ipmail07.adl2.internode.on.net [150.101.137.131]) by cuda.sgi.com with ESMTP id TfHJWsynHx6dnqHv for ; Wed, 01 May 2013 01:32:18 -0700 (PDT) Received: from disappointment ([192.168.1.1]) by dastard with esmtp (Exim 4.76) (envelope-from ) id 1UXSSV-00087E-Lu for xfs@oss.sgi.com; Wed, 01 May 2013 18:32:15 +1000 Received: from dave by disappointment with local (Exim 4.80) (envelope-from ) id 1UXSSV-0000fm-Ha for xfs@oss.sgi.com; Wed, 01 May 2013 18:32:15 +1000 From: Dave Chinner Subject: [PATCH 4/5] xfstests: fix incorrect redirect in generic/232 Date: Wed, 1 May 2013 18:32:02 +1000 Message-Id: <1367397123-2530-5-git-send-email-david@fromorbit.com> In-Reply-To: <1367397123-2530-1-git-send-email-david@fromorbit.com> References: <1367397123-2530-1-git-send-email-david@fromorbit.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 From: Dave Chinner generic/232 attempts to direct output to tee, but instead of using a pipe it uses an append operator. Hence it leaves a file named "tee" in the root directory of the xfstests execution path. Just direct the output to the $seqres.full file rather than trying to tee it into the test output as well. Signed-off-by: Dave Chinner --- tests/generic/232 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/generic/232 b/tests/generic/232 index 2402c45..8ada8aa 100755 --- a/tests/generic/232 +++ b/tests/generic/232 @@ -55,7 +55,7 @@ _fsstress() count=2000 args=`_scale_fsstress_args -d $out -n $count -p 7` - echo "fsstress $args" >> tee -a $seqres.full + echo "fsstress $args" >> $seqres.full if ! $FSSTRESS_PROG $args | tee -a $seqres.full | _filter_num then echo " fsstress $args returned $?" -- 1.7.10.4 _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs