Bug 60063 - Update rebaseline queue server to handle hierarchical test results
Summary: Update rebaseline queue server to handle hierarchical test results
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Mihai Parparita
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-05-03 14:18 PDT by Mihai Parparita
Modified: 2011-05-03 17:23 PDT (History)
1 user (show)

See Also:


Attachments
Patch (3.57 KB, patch)
2011-05-03 14:19 PDT, Mihai Parparita
ojan: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mihai Parparita 2011-05-03 14:18:17 PDT
Update rebaseline queue server to handle hierarchical test results
Comment 1 Mihai Parparita 2011-05-03 14:19:22 PDT
Created attachment 92130 [details]
Patch
Comment 2 Ojan Vafai 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.
Comment 3 Mihai Parparita 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.
Comment 4 Mihai Parparita 2011-05-03 17:23:32 PDT
Committed r85692: <http://trac.webkit.org/changeset/85692>