Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: sp/statbugs

Issue 1129173006: Enable slimming paint by default (for trybots only) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Tue Jun 9 10:33:43 PDT 2015 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sp/statbugs
diff --git a/sp/statbugs b/sp/statbugs
new file mode 100755
index 0000000000000000000000000000000000000000..79a98a22fb575bdb2139f1a71ad5f21692f0b176
--- /dev/null
+++ b/sp/statbugs
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+cd `dirname $0`/../LayoutTests
+../sp/gen-expectations
+grep '^crbug\.com' SlimmingPaintExpectations | grep -v Skip | grep -v NeedsRebaseline | sed 's"virtual/[a-z0-9_]*/""' >/tmp/spbugs
+echo "SP-Bugs Count"
+echo "======================="
+awk '{ sub("crbug.com/", "", $1); c[$1]++; } END { for (i in c) print i, c[i]}' /tmp/spbugs | sort
+echo
+echo "Module Count"
+echo "======================="
+sed 's"^.* \([^/]*\)/.*$"\1"' /tmp/spbugs | awk '{c[$0]++} END { for (i in c) print i, c[i] }' | sort
+echo
+echo "Module SP-Bugs"
+echo "======================="
+sed 's"crbug.com/\([0-9]*\).* \([^/]*\)/.*$"\2 \1"' /tmp/spbugs | sort -u
+echo
+echo "Sub-Module Count"
+echo "======================="
+sed 's"^.* \([^/]*\)/\([^/]*\)/.*$"\1/\2"' /tmp/spbugs | grep -v crbug.com | awk '{c[$0]++} END { for (i in c) print i, c[i] }' | sort
+echo
+echo
+echo "Sub-Module SP-Bugs"
+echo "======================="
+sed 's"crbug.com/\([0-9]*\).* \([^/]*\)/\([^/]*\)/.*$"\2/\3 \1"' /tmp/spbugs | grep -v crbug.com | sort -u
« Source/web/tests/WebViewTest.cpp ('K') | « sp/gen-expectations ('k') | sp/trybots » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698