Skip to content

Commit

Permalink
[Tests] Fix Drone CI capturing Address Sanitizer reports sent to stderr.
Browse files Browse the repository at this point in the history
  • Loading branch information
andywolk committed Jun 24, 2020
1 parent f7f493b commit 1cea3da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1cea3da

Please sign in to comment.