From 1cea3da2fc18c9a05312d66109be836b4e8e5c3e Mon Sep 17 00:00:00 2001 From: Andrey Volk Date: Wed, 24 Jun 2020 21:22:58 +0400 Subject: [PATCH] [Tests] Fix Drone CI capturing Address Sanitizer reports sent to stderr. --- tests/unit/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test.sh b/tests/unit/test.sh index aebddc8cd2..89711ca99b 100755 --- a/tests/unit/test.sh +++ b/tests/unit/test.sh @@ -25,7 +25,7 @@ log="$TESTSUNITPATH/log_run-tests_${relativedir//\//!}!$file.html"; # Execute the test echo "Start executing $currenttestpath" -$currenttestpath | tee >(ansi2html > $log) ; +$currenttestpath 2>&1 | tee >(ansi2html > $log) ; exitstatus=${PIPESTATUS[0]} ; echo "End executing $currenttestpath" echo "Exit status is $exitstatus"