From: Dave Chinner Date: Wed, 1 May 2013 08:32:02 +0000 (+0000) Subject: xfstests: fix incorrect redirect in generic/232 X-Git-Tag: v2022.05.01~3447 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=e6c6abd6dcacafa778d610451a023ec93c1b352e;p=users%2Fhch%2Fxfstests-dev.git xfstests: fix incorrect redirect in generic/232 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 Reviewed-by: Rich Johnston Signed-off-by: Rich Johnston --- diff --git a/tests/generic/232 b/tests/generic/232 index 2402c456c..8ada8aac7 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 $?"