Make test script generate debug graphs even when assertions fail

This commit is contained in:
Max Brunsfeld 2018-04-06 09:35:17 -07:00
parent a79a8c216f
commit 1eafcf0ba7

View file

@ -132,7 +132,7 @@ case ${mode} in
if [[ -n $line_count ]]; then
head -n $line_count $dot_file | dot -Tsvg >> $html_file
else
cat $dot_file | dot -Tsvg >> $html_file
cat $dot_file | grep -v 'Assertion' | dot -Tsvg >> $html_file
fi
rm $dot_file
echo "Wrote $html_file - $line_count"