Make script/test -S flag work when there are assertion failures

This commit is contained in:
Max Brunsfeld 2016-08-29 12:37:58 -07:00
parent e7ed92f1df
commit 04de7cc208

View file

@ -100,7 +100,7 @@ case ${mode} in
;;
SVG)
$cmd "${args[@]}" 2> >(dot -Tsvg > index.html)
$cmd "${args[@]}" 2> >(grep -v 'Assertion failed' | dot -Tsvg > index.html)
echo "Wrote index.html"
;;