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

Unified Diff: tools/gather_stats.sh

Issue 121763002: Add stats script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue
Patch Set: Created 7 years 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 | « no previous file | tools/stats.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gather_stats.sh
diff --git a/tools/gather_stats.sh b/tools/gather_stats.sh
new file mode 100755
index 0000000000000000000000000000000000000000..ee7e1511bf9725362d08d9026a48e2fef4040540
--- /dev/null
+++ b/tools/gather_stats.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+# Gather Blink stats.
+./stats.py \
+ --modified-after=2013-11-01 \
+ --modified-before=2013-12-01 \
+ > blink-201311.out 2>&1 &
+./stats.py \
+ --modified-after=2013-12-01 \
+ --modified-before=2014-01-01 \
+ > blink-201312.out 2>&1 &
+
+# Gather Chrome stats.
+./stats.py \
+ --chrome \
+ --modified-after=2013-11-01 \
+ --modified-before=2013-12-01 \
+ > chrome-201311.out 2>&1 &
+./stats.py \
+ --chrome \
+ --modified-after=2013-12-01 \
+ --modified-before=2014-01-01 \
+ > chrome-201312.out 2>&1 &
« no previous file with comments | « no previous file | tools/stats.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698