summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorjparent@chromium.org <jparent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-15 19:58:10 +0000
committerjparent@chromium.org <jparent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-15 19:58:10 +0000
commit71bb571f9ac450b86de3d05a97c35bb1ce74894c (patch)
tree13f2f9ad9ab24bf74c6d4dd3a0627dfccff23012 /webkit
parent27286e7a5905dcde71f834430b62235a40a2d020 (diff)
downloadchromium_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.html4
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);
}