From: Tim Shimmin Date: Mon, 12 Feb 2007 05:08:57 +0000 (+0000) Subject: Put the output of fsx into seq.full and output all of seq.full on failure. X-Git-Tag: v1.1.0~517 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7584d33f1b0587f9902c7e6826da9696cd94013d;p=xfstests-dev.git Put the output of fsx into seq.full and output all of seq.full on failure. Just to give more context around the error if we get one. Merge of master-melb:xfs-cmds:28068a by kenmcd. Put the output of fsx into seq.full and output all of seq.full on failure. Just to give more context around the error if we get one. --- diff --git a/091 b/091 index bf76269c..d4ef9092 100755 --- a/091 +++ b/091 @@ -34,10 +34,9 @@ run_fsx() { echo fsx $@ | tee -a $seq.full | sed -e "s/ $bsize / BSIZE /g" -e "s/ $psize / PSIZE /g" rm -f $TEST_DIR/junk - $here/ltp/fsx $@ $TEST_DIR/junk > $tmp.stdout 2> $tmp.stderr + $here/ltp/fsx $@ $TEST_DIR/junk >>$seq.full 2>&1 if [ $? -ne 0 ]; then - cat $tmp.stdout - cat $tmp.stderr + cat $seq.full exit 1 fi }