Closed
Bug 877048
Opened 12 years ago
Closed 12 years ago
Split android mochitest-gl test known failures for panda vs tegra2.
Categories
(Core :: Graphics: CanvasWebGL, defect)
Tracking
()
RESOLVED
FIXED
mozilla24
People
(Reporter: jgilbert, Assigned: jgilbert)
References
Details
Attachments
(5 files)
2.79 KB,
patch
|
bjacob
:
review+
|
Details | Diff | Splinter Review |
9.52 KB,
patch
|
bjacob
:
review+
|
Details | Diff | Splinter Review |
4.06 KB,
patch
|
bjacob
:
review+
|
Details | Diff | Splinter Review |
4.67 KB,
patch
|
bjacob
:
review+
|
Details | Diff | Splinter Review |
2.81 KB,
patch
|
bjacob
:
review+
|
Details | Diff | Splinter Review |
mochitest-gl is running 'fine' on Pandas (Android 4.0 slaves), but has a different set of failed tests on Tegra 2. (Android 2.2 slaves)
At minimum, we need to add differentiation between these two configs, with different failed test lists.
Assignee | ||
Comment 1•12 years ago
|
||
There is an unnecessary level of interconnectedness here that we can eliminate by just returning `[VENDOR, RENDERER]` and letting the code act on those directly.
Assignee: nobody → jgilbert
Attachment #755173 -
Flags: review?(bjacob)
Assignee | ||
Comment 2•12 years ago
|
||
Use interchangeable parts instead of a list of mutually exclusive bools.
Attachment #755174 -
Flags: review?(bjacob)
Assignee | ||
Comment 3•12 years ago
|
||
Just add the tests which are failing. 'General' android failed tests (really Panda) include a bunch of the skipped tests too. Really we should either skip or mark failing, and not allow a test to be in both groups, but we can do that later.
Attachment #755175 -
Flags: review?(bjacob)
Assignee | ||
Comment 4•12 years ago
|
||
The whole file should use only one of single or double quotes, but that's beyond the scope of this bug.
Attachment #755176 -
Flags: review?(bjacob)
Assignee | ||
Comment 5•12 years ago
|
||
Attachment #755177 -
Flags: review?(bjacob)
Assignee | ||
Comment 6•12 years ago
|
||
For patches 1 and 2:
https://tbpl.mozilla.org/?tree=Try&rev=78fb967029d1&showall=1
For all patches, but only on android:
https://tbpl.mozilla.org/?tree=Try&showall=1&rev=f8fdae193270
Assignee | ||
Comment 7•12 years ago
|
||
If a couple of these patches, we also add debug lines with `info()` which help assure that we really are testing what we think we're testing.
Total new log spew is ~10+<failing tests>+<skipped tests> lines, or about 80 on the worst platform. (Android 4.0)
Updated•12 years ago
|
Attachment #755173 -
Flags: review?(bjacob) → review+
Updated•12 years ago
|
Attachment #755174 -
Flags: review?(bjacob) → review+
Updated•12 years ago
|
Attachment #755175 -
Flags: review?(bjacob) → review+
Updated•12 years ago
|
Attachment #755176 -
Flags: review?(bjacob) → review+
Comment 8•12 years ago
|
||
Comment on attachment 755177 [details] [diff] [review]
patch 5: Add support for comments and whitespace trimming to failing/skipped test files.
Review of attachment 755177 [details] [diff] [review]:
-----------------------------------------------------------------
::: content/canvas/test/webgl/test_webgl_conformance_test_suite.html
@@ +554,5 @@
> + // Remove comments and trim whitespace.
> + var retLines = [];
> + for (var i = 0; i < lines.length; i++) {
> + var line = lines[i];
> + line = line.split('#', 1)[0].trim();
ooooh neat.
Attachment #755177 -
Flags: review?(bjacob) → review+
Assignee | ||
Comment 9•12 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/50d048871440
https://hg.mozilla.org/integration/mozilla-inbound/rev/8275eae29044
https://hg.mozilla.org/integration/mozilla-inbound/rev/ab2ac31dfe0e
https://hg.mozilla.org/integration/mozilla-inbound/rev/fd4a3273281b
https://hg.mozilla.org/integration/mozilla-inbound/rev/79cd6c91292b
Comment 10•12 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/50d048871440
https://hg.mozilla.org/mozilla-central/rev/8275eae29044
https://hg.mozilla.org/mozilla-central/rev/ab2ac31dfe0e
https://hg.mozilla.org/mozilla-central/rev/fd4a3273281b
https://hg.mozilla.org/mozilla-central/rev/79cd6c91292b
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla24
You need to log in
before you can comment on or make changes to this bug.
Description
•