summaryrefslogtreecommitdiffstats
path: root/webkit/tools
diff options
context:
space:
mode:
authorojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-02 19:58:07 +0000
committerojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-02 19:58:07 +0000
commit18cd6f4ee7a73b4ce04353d3c7d965c1de37b2a6 (patch)
tree6fce5a531eb9412658773031b5f07ca51be4eecb /webkit/tools
parentabb669e1c059feeaab8c72457562c6787c3c5328 (diff)
downloadchromium_src-18cd6f4ee7a73b4ce04353d3c7d965c1de37b2a6.zip
chromium_src-18cd6f4ee7a73b4ce04353d3c7d965c1de37b2a6.tar.gz
chromium_src-18cd6f4ee7a73b4ce04353d3c7d965c1de37b2a6.tar.bz2
Ugh. Actually sort correctly by the path. The previous
change was correct in spirit (do the sort in the reverse order), but didn't actually sort by the paths on the objects. Review URL: http://codereview.chromium.org/257027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27882 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r--webkit/tools/layout_tests/flakiness_dashboard.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/flakiness_dashboard.html b/webkit/tools/layout_tests/flakiness_dashboard.html
index fbce32e..f74a8c5 100644
--- a/webkit/tools/layout_tests/flakiness_dashboard.html
+++ b/webkit/tools/layout_tests/flakiness_dashboard.html
@@ -657,7 +657,7 @@
// Sort the array to hit more specific paths last. More specific
// paths (e.g. foo/bar/baz.html) override entries for less-specific ones
// (e.g. foo/bar).
- expectationsArray.sort();
+ expectationsArray.sort(getAlphanumericCompare('path'));
var allTests = getAllTests();
for (var i = 0; i < expectationsArray.length; i++) {