From 1eafcf0ba74bc38820943f0b8a3936882930135c Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 6 Apr 2018 09:35:17 -0700 Subject: [PATCH] Make test script generate debug graphs even when assertions fail --- script/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test b/script/test index 34e66241..74025499 100755 --- a/script/test +++ b/script/test @@ -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"