From 7584d33f1b0587f9902c7e6826da9696cd94013d Mon Sep 17 00:00:00 2001 From: Tim Shimmin Date: Mon, 12 Feb 2007 05:08:57 +0000 Subject: [PATCH] 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. --- 091 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 } -- 2.47.3