From a5cf6bd12a9d587d76db305eb0387346cd31d1b8 Mon Sep 17 00:00:00 2001 From: Stephen Morris Date: Wed, 20 Dec 2017 14:54:37 +0000 Subject: [PATCH] [rt46602] Ensure that output sent to stderr is routed to the output file --- bin/tests/system/runsequential.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/runsequential.sh b/bin/tests/system/runsequential.sh index 602fb3048a..d590764c35 100644 --- a/bin/tests/system/runsequential.sh +++ b/bin/tests/system/runsequential.sh @@ -18,5 +18,5 @@ SYSTEMTESTTOP=. for d in $SEQUENTIALDIRS do - $SHELL run.sh "${@}" $d | tee $d/test.output + $SHELL run.sh "${@}" $d 2>&1 | tee $d/test.output done