From 04de7cc208b4603f0b6787d25e3c20984a7f4a32 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 29 Aug 2016 12:37:58 -0700 Subject: [PATCH] Make script/test -S flag work when there are assertion failures --- script/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test b/script/test index bb29adca..ce151d1b 100755 --- a/script/test +++ b/script/test @@ -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" ;;