Changeset 190730 in webkit


Ignore:
Timestamp:
Oct 8, 2015 10:07:37 AM (9 years ago)
Author:
ap@apple.com
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTesterQueueView.js

    r190549 r190730  
    193193            var test = sortedRegressions[i];
    194194
     195            if (iteration.queue.crashesOnly && !test.crash && !iteration.layoutTestResults.tooManyFailures)
     196                continue;
     197
    195198            var rowElement = document.createElement("div");
    196199
  • trunk/Tools/ChangeLog

    r190698 r190730  
     12015-10-08  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Crash-only queues on bot watcher's dashboard should not have non-crashing tests in popovers
     4        https://bugs.webkit.org/show_bug.cgi?id=149848
     5
     6        Reviewed by Darin Adler.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTesterQueueView.js:
     9
    1102015-10-07  Brent Fulgham  <bfulgham@apple.com>
    211
Note: See TracChangeset for help on using the changeset viewer.