RESOLVED FIXED 60063
Update rebaseline queue server to handle hierarchical test results
https://bugs.webkit.org/show_bug.cgi?id=60063
Summary Update rebaseline queue server to handle hierarchical test results
Mihai Parparita
Reported 2011-05-03 14:18:17 PDT
Update rebaseline queue server to handle hierarchical test results
Attachments
Patch (3.57 KB, patch)
2011-05-03 14:19 PDT, Mihai Parparita
ojan: review+
Mihai Parparita
Comment 1 2011-05-03 14:19:22 PDT
Ojan Vafai
Comment 2 2011-05-03 16:34:36 PDT
Comment on attachment 92130 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=92130&action=review Whoops. Sorry. I thought I found all the places that read in the results. > Tools/RebaselineQueueServer/templates/builder-queue-edit.html:59 > + console.dir(results); Did you mean to leave this in? > Tools/RebaselineQueueServer/templates/builder-queue-edit.html:72 > + if (actual != expected && > + expected.split(' ').indexOf(actual) == -1 && > + actual != 'SKIP' && > + actual.indexOf('PASS') == -1 && > + (expected.indexOf('FAIL') == -1 || actual.indexOf('TIMEOUT') != -1)) { > + results.name = test; nit: i prefer the old code if you changed the continue to an early return. But your call.
Mihai Parparita
Comment 3 2011-05-03 17:20:53 PDT
(In reply to comment #2) > Did you mean to leave this in? Nope, removed. > nit: i prefer the old code if you changed the continue to an early return. But your call. Yeah, that's better. Switched back.
Mihai Parparita
Comment 4 2011-05-03 17:23:32 PDT
Note You need to log in before you can comment on or make changes to this bug.