Merge pull request #711 from signalwire/dronestderr

[Tests] Fix Drone CI capturing Address Sanitizer reports sent to stderr.
This commit is contained in:
Andrey Volk 2020-06-24 22:20:31 +04:00 committed by GitHub
commit ffe0a1b629
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"