garden-o-matic results should anticipate 0 unexpected failures.
authordglazkov@chromium.org <dglazkov@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 29 Sep 2011 01:03:30 +0000 (01:03 +0000)
committerdglazkov@chromium.org <dglazkov@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 29 Sep 2011 01:03:30 +0000 (01:03 +0000)
https://bugs.webkit.org/show_bug.cgi?id=69036

Also fixes controllers: UnexpectedFailures test.

Reviewed by Adam Barth.

* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js: Tweaked.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@96282 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js
Tools/ChangeLog

index c8e58a1..20d5d79 100644 (file)
@@ -228,7 +228,8 @@ ui.results.TestSelector = base.extends('div', {
     firstResult: function()
     {
         $(this).accordion('option', 'active', 0);
-        $('.builder-selector', this)[0].firstResult();
+        var builderSelector = $('.builder-selector', this)[0];
+        builderSelector && builderSelector.firstResult();
     },
     currentTestName: function()
     {
index 99e09a3..3cb3ba0 100644 (file)
@@ -1,3 +1,14 @@
+2011-09-28  Dimitri Glazkov  <dglazkov@chromium.org>
+
+        garden-o-matic results should anticipate 0 unexpected failures.
+        https://bugs.webkit.org/show_bug.cgi?id=69036
+
+        Also fixes controllers: UnexpectedFailures test.
+
+        Reviewed by Adam Barth.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js: Tweaked.
+
 2011-09-28  Dirk Pranke  <dpranke@chromium.org>
 
         Modify new-run-webkit-tests to return the percentage difference in image diffs where possible.