Title: [190730] trunk/Tools
Revision
190730
Author
[email protected]
Date
2015-10-08 10:07:37 -0700 (Thu, 08 Oct 2015)

Log Message

Crash-only queues on bot watcher's dashboard should not have non-crashing tests in popovers
https://bugs.webkit.org/show_bug.cgi?id=149848

Reviewed by Darin Adler.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTesterQueueView.js:

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTesterQueueView.js (190729 => 190730)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTesterQueueView.js	2015-10-08 16:32:16 UTC (rev 190729)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTesterQueueView.js	2015-10-08 17:07:37 UTC (rev 190730)
@@ -192,6 +192,9 @@
         for (var i = 0, end = sortedRegressions.length; i != end; ++i) {
             var test = sortedRegressions[i];
 
+            if (iteration.queue.crashesOnly && !test.crash && !iteration.layoutTestResults.tooManyFailures)
+                continue;
+
             var rowElement = document.createElement("div");
 
             var testPathElement = document.createElement("span");

Modified: trunk/Tools/ChangeLog (190729 => 190730)


--- trunk/Tools/ChangeLog	2015-10-08 16:32:16 UTC (rev 190729)
+++ trunk/Tools/ChangeLog	2015-10-08 17:07:37 UTC (rev 190730)
@@ -1,3 +1,12 @@
+2015-10-08  Alexey Proskuryakov  <[email protected]>
+
+        Crash-only queues on bot watcher's dashboard should not have non-crashing tests in popovers
+        https://bugs.webkit.org/show_bug.cgi?id=149848
+
+        Reviewed by Darin Adler.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTesterQueueView.js:
+
 2015-10-07  Brent Fulgham  <[email protected]>
 
         [Win] Support 64-bit Build and Testing
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to