| Summary: | Botwatcher's dashboard doesn't show JSC test regressions on Apple bots | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Csaba Osztrogonác <ossy> | ||||
| Component: | Tools / Tests | Assignee: | Alexey Proskuryakov <ap> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | ap, dbates, dburkart, fpizlo, ggaren, mark.lam, oliver, thorton, timothy | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Csaba Osztrogonác
2015-03-26 04:22:23 PDT
> Now only JSC regressions happen on GTK and EFL bots are shown
on the Botwatcher's dashboard.
Windows also runs JSC tests in the same queue as layout tests.
I agree that we should have JSC test results on the dashboard. I'd ask to add them in such a way that we don't get many new green bubbles when everything is good though, we are at a point where we need to collapse bubbles so that they could fit on one screen for most people.
These are the JSC queues that we have on Mac:
Apple Mavericks 32-bit JSC (BuildAndTest)
Apple Yosemite 32-bit JSC (BuildAndTest)
Apple Yosemite Debug JSC (Tests)
Apple Yosemite Release JSC (Tests)
Apple Mavericks LLINT CLoop (BuildAndTest)
Apple Yosemite LLINT CLoop (BuildAndTest)
Created attachment 253741 [details]
proposed patch
Comment on attachment 253741 [details] proposed patch View in context: https://bugs.webkit.org/attachment.cgi?id=253741&action=review > Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Buildbot.js:46 > + if ("combinedQueues" in queuesInfo[id]) { Usually best to just test the value for non-null (buildbot.queuesInfo[id].combinedQueues) It could exist but still be null/undefined. > Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Buildbot.js:123 > + if ("combinedQueues" in queueInfo) { Ditto. > Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Main.js:34 > + if ("combinedQueues" in buildbot.queuesInfo[id]) { Ditto. Committed <http://trac.webkit.org/r184879>. |