On Thu, Dec 17, 2015 at 06:53:43PM +0100, Radim Krčmář wrote: > log it instead to keep the output clear. > > Signed-off-by: Radim Krčmář <rkrc...@redhat.com> > --- > v2: new (v1 did this by catching all output in a variable) > > run_tests.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/run_tests.sh b/run_tests.sh > index 62c106a0b693..4c8c20a16eac 100755 > --- a/run_tests.sh > +++ b/run_tests.sh > @@ -29,7 +29,7 @@ EOF > } > > __run() { ./$TEST_DIR-run "${@}"; } > -__eval_log() { eval "${@}" >> test.log; } > +__eval_log() { eval "${@}" >> test.log 2>&1; } > __echo_last_log() { cat test.log; } # XXX: ignores the 'last' bit
This will greatly conflict with my exit code untangling patch. I'll send that now so you can see it. > > echo > test.log > -- > 2.6.4 > > -- > To unsubscribe from this list: send the line "unsubscribe kvm" in > the body of a message to majord...@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html