diff options
author | jparent@chromium.org <jparent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-15 19:58:10 +0000 |
---|---|---|
committer | jparent@chromium.org <jparent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-15 19:58:10 +0000 |
commit | 71bb571f9ac450b86de3d05a97c35bb1ce74894c (patch) | |
tree | 13f2f9ad9ab24bf74c6d4dd3a0627dfccff23012 /webkit | |
parent | 27286e7a5905dcde71f834430b62235a40a2d020 (diff) | |
download | chromium_src-71bb571f9ac450b86de3d05a97c35bb1ce74894c.zip chromium_src-71bb571f9ac450b86de3d05a97c35bb1ce74894c.tar.gz chromium_src-71bb571f9ac450b86de3d05a97c35bb1ce74894c.tar.bz2 |
Make expectationsUpdate mode of the flakiness dashboard go through tests in alphabetical order.
This makes it more efficient to process groups of tests and allows you to easy skip over groups of tests (say, http tests).
TEST=manual
BUG=none
Review URL: http://codereview.chromium.org/501009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34589 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/tools/layout_tests/flakiness_dashboard.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/flakiness_dashboard.html b/webkit/tools/layout_tests/flakiness_dashboard.html index 0dc65d5..6a8a93e 100644 --- a/webkit/tools/layout_tests/flakiness_dashboard.html +++ b/webkit/tools/layout_tests/flakiness_dashboard.html @@ -1516,7 +1516,9 @@ } } - var keys = getKeys(testsNeedingUpdate); + // Get the keys in alphabetical order, so it is easy to process groups + // of tests. + var keys = getKeys(testsNeedingUpdate).sort(); showUpdateInfoForTest(testsNeedingUpdate, keys); } |