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

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: Fri Jun 19 16:39:28 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
« no previous file with comments | « sp/last-auto-rebaseline ('k') | sp/trybots » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sp/statbugs
diff --git a/sp/statbugs b/sp/statbugs
new file mode 100755
index 0000000000000000000000000000000000000000..d8440a5de195a7352c1a37c609612313ad5ab748
--- /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 \]' | grep -v '\[ Pass \]' >/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
« no previous file with comments | « sp/last-auto-rebaseline ('k') | sp/trybots » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698