tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 45a2625bb47be10cd151e9e5224b291eec496c78
parent 29a3a9da36e32bd3ea06c83dead5937498624da7
Author: Tom Marble <tmarble@info9.net>
Date:   Sun, 30 Nov 2025 18:36:15 +0000

Bug 2002633 - update generated TOML manifests to use idiomatic conditions r=jmaher

Signed-off-by: Tom Marble <tmarble@info9.net>

Differential Revision: https://phabricator.services.mozilla.com/D274474

Diffstat:
Mdom/canvas/test/webgl-conf/generate-wrappers-and-manifest.py | 17++++-------------
Mdom/canvas/test/webgl-conf/generated-mochitest.toml | 1586+++++++++++++++++++++++++++++++++++++++++++++++++------------------------------
Mdom/canvas/test/webgl-conf/mochitest-errata.toml | 1589+++++++++++++++++++++++++++++++++++++++++++++++++------------------------------
3 files changed, 1964 insertions(+), 1228 deletions(-)

diff --git a/dom/canvas/test/webgl-conf/generate-wrappers-and-manifest.py b/dom/canvas/test/webgl-conf/generate-wrappers-and-manifest.py @@ -35,8 +35,9 @@ EXTRA_SUPPORT_FILES = [ ACCEPTABLE_ERRATA_KEYS = set( [ "fail-if", - "skip-if", "prefs", + "skip-if", + "tags", ] ) @@ -124,7 +125,6 @@ class TestEntry: self.path = path self.webgl1 = webgl1 self.webgl2 = webgl2 - return def AccumTests(pathStr, listFile, allowWebGL1, allowWebGL2, out_testList): @@ -194,8 +194,6 @@ def AccumTests(pathStr, listFile, allowWebGL1, allowWebGL2, out_testList): AccumTests(nextPathStr, nextListFile, webgl1, webgl2, out_testList) continue - return - ######################################################################## # Templates @@ -204,7 +202,6 @@ def AccumTests(pathStr, listFile, allowWebGL1, allowWebGL2, out_testList): def FillTemplate(inFilePath, templateDict, outFilePath): templateShell = ImportTemplate(inFilePath) OutputFilledTemplate(templateShell, templateDict, outFilePath) - return def ImportTemplate(inFilePath): @@ -217,7 +214,6 @@ def OutputFilledTemplate(templateShell, templateDict, outFilePath): with open(outFilePath, "w", newline="\n") as f: f.writelines(spanStrList) - return ############################## @@ -250,8 +246,6 @@ class TemplateShellSpan: self.isLiteralSpan = False self.span = self.span[2:-2] - return - def Fill(self, templateDict, indentLen): if self.isLiteralSpan: return self.span @@ -295,15 +289,14 @@ class TemplateShell: spanList.append(span) self.spanList = spanList - return # Returns spanStrList. def Fill(self, templateDict): indentLen = 0 ret = [] - for span in self.spanList: - span = span.Fill(templateDict, indentLen) + for span_ in self.spanList: + span = span_.Fill(templateDict, indentLen) ret.append(span) # Get next `indentLen`. @@ -358,7 +351,6 @@ def WriteWrapper(entryPath, webgl2, templateShell, wrapperPathAccum): assert IsWrapperWebGL2(wrapperPath) wrapperPathAccum.append(wrapperPath) - return def WriteWrappers(testEntryList): @@ -450,7 +442,6 @@ def WriteManifest(wrapperPathStrList, supportPathStrList): destPath = destPathStr.replace("/", os.sep) FillTemplate(MANIFEST_TEMPLATE_FILE, templateDict, destPath) - return ############################## diff --git a/dom/canvas/test/webgl-conf/generated-mochitest.toml b/dom/canvas/test/webgl-conf/generated-mochitest.toml @@ -5220,25 +5220,34 @@ support-files = [ ["generated/test_..__always-fail.html"] subsuite = "webgl1-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__attribs__gl-bindAttribLocation-aliasing-inactive.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux'", - "os == 'mac'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] ["generated/test_2_conformance2__attribs__gl-vertex-attrib-i-render.html"] subsuite = "webgl2-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__attribs__gl-vertex-attrib-normalized-int.html"] subsuite = "webgl2-core" ["generated/test_2_conformance2__attribs__gl-vertex-attrib.html"] subsuite = "webgl2-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__attribs__gl-vertexattribipointer-offsets.html"] subsuite = "webgl2-core" @@ -5278,7 +5287,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__buffers__get-buffer-sub-data.html"] subsuite = "webgl2-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__buffers__one-large-uniform-buffer.html"] subsuite = "webgl2-core" @@ -5304,9 +5315,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__context__context-attributes-depth-stencil-antialias-obeyed.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'android'", - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] tags = "os_integration" @@ -5334,8 +5344,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__ext-color-buffer-float.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", ] ["generated/test_2_conformance2__extensions__ext-color-buffer-half-float.html"] @@ -5355,13 +5364,15 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__ext-texture-norm16.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android'"] #Bug 1658801 +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", #Bug 1658801 +] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", - "os == 'linux'", ] ["generated/test_2_conformance2__extensions__nv-shader-noperspective-interpolation.html"] @@ -5378,31 +5389,45 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__ovr_multiview2.html"] subsuite = "webgl2-core" -fail-if = ["os == 'win'"] -skip-if = ["os == 'android'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_depth.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_draw_buffers.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android'"] -fail-if = ["os == 'win' && debug"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_flat_varying.html"] subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__ovr_multiview2_instanced_draw.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_non_multiview_shaders.html"] subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__ovr_multiview2_single_view_operations.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_timer_query.html"] subsuite = "webgl2-core" @@ -5418,7 +5443,10 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__required-extensions.html"] subsuite = "webgl2-core" -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance2__extensions__webgl-blend-func-extended.html"] subsuite = "webgl2-core" @@ -5429,8 +5457,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__webgl-multi-draw-instanced-base-vertex-base-instance.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__extensions__webgl-provoking-vertex.html"] @@ -5519,13 +5547,15 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__loops-with-side-effects.html"] subsuite = "webgl2-ext" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__glsl3__matrix-row-major-dynamic-indexing.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__glsl3__matrix-row-major.html"] @@ -5578,11 +5608,15 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__switch-case.html"] subsuite = "webgl2-ext" -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__glsl3__texture-bias.html"] subsuite = "webgl2-ext" -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__glsl3__texture-offset-non-constant-offset.html"] subsuite = "webgl2-ext" @@ -5595,7 +5629,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__tricky-loop-conditions.html"] subsuite = "webgl2-ext" -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__glsl3__uint-int-shift-bug.html"] subsuite = "webgl2-ext" @@ -5611,7 +5647,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__uniform-location-length-limits.html"] subsuite = "webgl2-ext" -skip-if = ["os == 'win' && debug"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", +] ["generated/test_2_conformance2__glsl3__uniform-struct-with-non-square-matrix.html"] subsuite = "webgl2-ext" @@ -5621,7 +5659,6 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__valid-invariant.html"] subsuite = "webgl2-ext" -fail-if = ["os == 'linux' && os_version == '18.04' && display != 'wayland'"] ["generated/test_2_conformance2__glsl3__varying-struct-inline-definition.html"] subsuite = "webgl2-ext" @@ -5632,16 +5669,15 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__vector-dynamic-indexing-swizzled-lvalue.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__glsl3__vector-dynamic-indexing.html"] subsuite = "webgl2-ext" skip-if = [ - "os == 'win'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__misc__blend-integer.html"] @@ -5650,9 +5686,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__misc__expando-loss-2.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'android'", - "os == 'linux'", - "verify && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_2_conformance2__misc__getextension-while-pbo-bound-stability.html"] @@ -5670,10 +5706,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__misc__uninitialized-test-2.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", - "os == 'android' && os_version == '14'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__misc__views-with-offsets.html"] @@ -5697,9 +5732,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__offscreencanvas__offscreencanvas-sync.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && opt", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && opt", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64' && opt", ] @@ -5723,11 +5757,15 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__query__occlusion-query-scissor.html"] subsuite = "webgl2-core" -skip-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance2__query__occlusion-query.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__query__query.html"] subsuite = "webgl2-core" @@ -5737,14 +5775,18 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__reading__read-pixels-from-fbo-test.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__reading__read-pixels-from-rgb8-into-pbo-bug.html"] subsuite = "webgl2-core" ["generated/test_2_conformance2__reading__read-pixels-into-pixel-pack-buffer.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__reading__read-pixels-pack-parameters.html"] subsuite = "webgl2-core" @@ -5764,8 +5806,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__renderbuffers__multisample-draws-between-blits.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__renderbuffers__multisample-with-full-sample-counts.html"] @@ -5782,7 +5823,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__renderbuffers__readbuffer.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__rendering__attrib-type-match.html"] subsuite = "webgl2-core" @@ -5793,19 +5836,16 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__blitframebuffer-filter-srgb.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] ["generated/test_2_conformance2__rendering__blitframebuffer-multisampled-readbuffer.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__rendering__blitframebuffer-outside-readbuffer.html"] @@ -5816,7 +5856,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__blitframebuffer-resolve-to-back-buffer.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__rendering__blitframebuffer-scissor-enabled.html"] subsuite = "webgl2-core" @@ -5853,7 +5895,10 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__clipping-wide-points.html"] subsuite = "webgl2-core" -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance2__rendering__depth-stencil-feedback-loop.html"] subsuite = "webgl2-core" @@ -5867,8 +5912,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__draw-buffers-sparse-output-locations.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'win'", - "os == 'android' && os_version == '14'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__rendering__draw-buffers.html"] @@ -5888,19 +5933,22 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__framebuffer-mismatched-attachment-targets.html"] subsuite = "webgl2-core" -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__rendering__framebuffer-render-to-layer-angle-issue.html"] subsuite = "webgl2-core" -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__rendering__framebuffer-render-to-layer.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'android'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] @@ -5910,16 +5958,18 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__framebuffer-texture-level1.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", +] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] -skip-if = ["os == 'linux'"] ["generated/test_2_conformance2__rendering__framebuffer-to-texture.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__rendering__framebuffer-unsupported.html"] @@ -5940,15 +5990,13 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__line-rendering-quality.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__rendering__multisampling-depth-resolve.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__rendering__multisampling-fragment-evaluation.html"] @@ -5968,11 +6016,15 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__texture-switch-performance.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__rendering__uniform-block-buffer-size.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance2__rendering__vertex-id-large-count.html"] subsuite = "webgl2-core" @@ -5995,8 +6047,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__state__gl-get-calls.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__state__gl-getstring.html"] @@ -6004,8 +6055,13 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__state__gl-object-get-calls.html"] subsuite = "webgl2-core" -skip-if = ["true"] -fail-if = ["os == 'linux'"] +skip-if = [ + "true", +] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance2__sync__sync-webgl-specific.html"] subsuite = "webgl2-core" @@ -6051,7 +6107,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__canvas__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__canvas__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -6154,7 +6212,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__canvas__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__canvas__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -6257,7 +6317,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -6322,236 +6384,238 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r16f-red-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r16f-red-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r32f-red-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r8-red-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r8ui-red_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg16f-rg-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg16f-rg-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg32f-rg-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg8-rg-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg8ui-rg_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb16f-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb32f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb565-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb5_a1-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb8-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb9_e5-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb9_e5-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba16f-rgba-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba16f-rgba-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba32f-rgba-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba4-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba8-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-srgb8-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-2d-r11f_g11f_b10f-rgb-float.html"] @@ -6595,7 +6659,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -6660,236 +6726,238 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r16f-red-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r16f-red-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r32f-red-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r8-red-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r8ui-red_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg16f-rg-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg16f-rg-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg32f-rg-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg8-rg-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg8ui-rg_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb16f-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb32f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb565-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb5_a1-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb8-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb9_e5-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb9_e5-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba32f-rgba-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba4-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba8-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-srgb8-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image_bitmap_from_blob__tex-2d-r11f_g11f_b10f-rgb-float.html"] @@ -6933,7 +7001,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_blob__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_blob__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7036,7 +7106,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_blob__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_blob__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7139,7 +7211,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_canvas__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_canvas__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7242,7 +7316,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_canvas__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_canvas__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7345,7 +7421,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_image__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7448,7 +7526,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_image__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7551,7 +7631,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_image_bitmap__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image_bitmap__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7654,7 +7736,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_image_bitmap__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image_bitmap__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7757,7 +7841,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_image_data__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image_data__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7860,7 +7946,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_image_data__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image_data__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -7963,7 +8051,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_video__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_video__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -8066,7 +8156,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_bitmap_from_video__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_video__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -8169,7 +8261,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_data__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_data__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -8272,7 +8366,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__image_data__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_data__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -8354,7 +8450,10 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__copy-texture-cube-map-bug.html"] subsuite = "webgl2-core" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance2__textures__misc__copy-texture-image-luma-format.html"] subsuite = "webgl2-core" @@ -8362,9 +8461,10 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__copy-texture-image-same-texture.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'linux'", - "os == 'win'", - "os == 'android' && os_version == '14'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__copy-texture-image-webgl-specific.html"] @@ -8382,15 +8482,16 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__immutable-tex-render-feedback.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] skip-if = [ - "os == 'linux' && debug", - "os == 'android' && os_version == '14' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland' && debug", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && debug", ] ["generated/test_2_conformance2__textures__misc__integer-cubemap-specification-order-bug.html"] @@ -8407,14 +8508,14 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__origin-clean-conformance-offscreencanvas.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__textures__misc__tex-3d-mipmap-levels-intel-bug.html"] subsuite = "webgl2-core" fail-if = [ - "win11_2009", - "os == 'win' && os_version == '11.26100' && processor == 'x86'", - "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-3d-size-limit.html"] @@ -8423,15 +8524,16 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__tex-base-level-bug.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] # macosx1014 due to 1563418 ["generated/test_2_conformance2__textures__misc__tex-image-10bpc.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__misc__tex-image-and-sub-image-with-array-buffer-view-sub-source.html"] subsuite = "webgl2-core" @@ -8439,10 +8541,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__tex-image-with-bad-args-from-dom-elements.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'win'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android' && processor == 'aarch64'", # Bug 1687073 + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1687073 + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-image-with-bad-args.html"] @@ -8454,20 +8555,17 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__tex-input-validation.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'android'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-mipmap-levels.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", - "win11_2009", - "os == 'win' && os_version == '11.26100' && processor == 'x86'", - "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-new-formats.html"] @@ -8476,8 +8574,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__tex-srgb-mipmap.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-storage-2d.html"] @@ -8498,24 +8596,25 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__tex-unpack-params-imagedata.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-unpack-params-with-flip-y-and-premultiply-alpha.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__misc__tex-unpack-params.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64' && debug", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug", ] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] @@ -8566,7 +8665,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__svg_image__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__svg_image__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -8669,7 +8770,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__svg_image__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__svg_image__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -8772,7 +8875,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__video__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__video__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -8837,236 +8942,238 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r16f-red-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r16f-red-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r32f-red-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r8-red-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r8ui-red_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg16f-rg-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg16f-rg-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg32f-rg-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg8-rg-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg8ui-rg_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__video__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb16f-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb32f-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb565-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb5_a1-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb8-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb9_e5-rgb-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb9_e5-rgb-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba16f-rgba-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba16f-rgba-half_float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba32f-rgba-float.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba4-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba8-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-srgb8-rgb-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__webgl_canvas__tex-2d-r11f_g11f_b10f-rgb-float.html"] @@ -9110,7 +9217,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__webgl_canvas__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__webgl_canvas__tex-2d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -9213,7 +9322,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__textures__webgl_canvas__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] subsuite = "webgl2-ext" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__webgl_canvas__tex-3d-rgb16f-rgb-float.html"] subsuite = "webgl2-ext" @@ -9292,13 +9403,16 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__transform_feedback__too-small-buffers.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__transform_feedback__transform_feedback.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'linux'", - "os == 'android' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_2_conformance2__transform_feedback__two-unreferenced-varyings.html"] @@ -9339,51 +9453,75 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__wasm__bufferdata-16gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__bufferdata-4gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__buffersubdata-16gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__buffersubdata-4gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__getbuffersubdata-16gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__getbuffersubdata-4gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__readpixels-16gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__readpixels-4gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__teximage2d-16gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__teximage2d-4gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__texsubimage2d-16gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__texsubimage2d-4gb-wasm-memory.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance__attribs__gl-bindAttribLocation-aliasing.html"] subsuite = "webgl2-core" @@ -9474,7 +9612,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__canvas__canvas-test.html"] subsuite = "webgl2-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win', && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__canvas__canvas-zero-size.html"] subsuite = "webgl2-core" @@ -9514,7 +9654,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__canvas__to-data-url-test.html"] subsuite = "webgl2-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__canvas__viewport-unchanged-upon-resize.html"] subsuite = "webgl2-core" @@ -9531,8 +9673,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance__context__context-creation-and-destruction.html"] @@ -9624,7 +9765,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__extensions__webgl-compressed-texture-astc.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android' && debug"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", +] ["generated/test_2_conformance__extensions__webgl-compressed-texture-etc.html"] subsuite = "webgl2-core" @@ -9766,7 +9909,6 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__glsl__bugs__sampler-array-using-loop-index.html"] subsuite = "webgl2-ext" -fail-if = ["os == 'linux' && os_version == '18.04' && display != 'wayland'"] ["generated/test_2_conformance__glsl__bugs__sampler-struct-function-arg.html"] subsuite = "webgl2-ext" @@ -9801,9 +9943,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__glsl__bugs__vector-matrix-constructor-scalarization.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'android' && opt", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'android' && os_version == '14' && arch == 'aarch64' && opt", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance__glsl__bugs__vector-scalar-arithmetic-inside-loop-complex.html"] @@ -9845,11 +9987,11 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"] subsuite = "webgl2-ext" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__glsl__constructors__glsl-construct-vec2.html"] @@ -10194,9 +10336,8 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__glsl__misc__fragcolor-fragdata-invariant.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] # [unexpected fragment shader compile status] (expected: true) Declaring both gl_FragColor and gl_FragData invariant should succeed. @@ -10602,8 +10743,7 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__limits__gl-line-width.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_2_conformance__limits__gl-max-texture-dimensions.html"] @@ -10621,9 +10761,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__misc__bad-arguments-test.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__misc__boolean-argument-conversion.html"] @@ -10662,21 +10801,25 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__misc__type-conversion-test.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", ] ["generated/test_2_conformance__misc__uninitialized-test.html"] subsuite = "webgl2-core" +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && asan", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && ccov", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && opt", +] skip-if = [ - "os == 'win' && debug", - "os == 'android' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", ] -fail-if = ["os == 'win' && !debug"] ["generated/test_2_conformance__misc__webgl-specific-stencil-settings.html"] subsuite = "webgl2-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__misc__webgl-specific.html"] subsuite = "webgl2-core" @@ -10776,7 +10919,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__more__functions__readPixelsBadArgs.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__more__functions__texImage2D.html"] subsuite = "webgl2-core" @@ -10786,7 +10931,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__more__functions__texImage2DHTML.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__more__functions__texImage2DHTMLBadArgs.html"] subsuite = "webgl2-core" @@ -10799,7 +10946,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__more__functions__texSubImage2DHTML.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__more__functions__texSubImage2DHTMLBadArgs.html"] subsuite = "webgl2-core" @@ -10983,7 +11132,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__ogles__GL__built_in_varying_array_out_of_bounds__built_in_varying_array_out_of_bounds_001_to_001.html"] subsuite = "webgl2-ext" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__ogles__GL__ceil__ceil_001_to_006.html"] subsuite = "webgl2-ext" @@ -11233,7 +11384,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__ogles__GL__struct__struct_025_to_032.html"] subsuite = "webgl2-ext" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__ogles__GL__struct__struct_033_to_040.html"] subsuite = "webgl2-ext" @@ -11429,7 +11582,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__rendering__gl-scissor-test.html"] subsuite = "webgl2-core" -fail-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] +fail-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance__rendering__gl-viewport-test.html"] subsuite = "webgl2-core" @@ -11440,13 +11595,14 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__rendering__line-rendering-quality.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance__rendering__many-draw-calls.html"] subsuite = "webgl2-core" -skip-if = ["debug"] +skip-if = [ + "debug", +] ["generated/test_2_conformance__rendering__more-than-65536-indices.html"] subsuite = "webgl2-core" @@ -11480,17 +11636,21 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__rendering__preservedrawingbuffer-leak.html"] subsuite = "webgl2-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__rendering__rendering-sampling-feedback-loop.html"] subsuite = "webgl2-core" ["generated/test_2_conformance__rendering__rendering-stencil-large-viewport.html"] subsuite = "webgl2-core" -fail-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] +fail-if = [ + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", +] skip-if = [ - "os == 'android'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__rendering__scissor-rect-repeated-rendering.html"] @@ -11501,7 +11661,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__rendering__texture-switch-performance.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__rendering__triangle.html"] subsuite = "webgl2-core" @@ -11770,8 +11932,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__copy-tex-image-2d-formats.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_2_conformance__textures__misc__copy-tex-image-and-sub-image-2d.html"] @@ -11792,8 +11953,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__cube-map-uploads-out-of-order.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_2_conformance__textures__misc__default-texture.html"] @@ -11816,11 +11976,15 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__origin-clean-conformance-offscreencanvas.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__textures__misc__origin-clean-conformance.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__textures__misc__png-image-types.html"] subsuite = "webgl2-core" @@ -11852,9 +12016,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__tex-video-using-tex-unit-non-zero.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'win'", - "os == 'android' && debug", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && !debug", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", ] ["generated/test_2_conformance__textures__misc__texparameter-test.html"] @@ -11884,8 +12047,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__texture-corner-case-videos.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'android'", - "os == 'linux' && os_version == '18.04'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] ["generated/test_2_conformance__textures__misc__texture-cube-as-fbo-attachment.html"] @@ -11902,22 +12064,28 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__texture-size-cube-maps.html"] subsuite = "webgl2-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__textures__misc__texture-size-limit.html"] subsuite = "webgl2-core" -skip-if = ["os == 'linux' && asan"] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", +] ["generated/test_2_conformance__textures__misc__texture-size.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'linux' && asan", - "os == 'win'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__textures__misc__texture-srgb-upload.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android' && processor == 'aarch64'"] # Bug 1796057 +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 +] ["generated/test_2_conformance__textures__misc__texture-sub-image-cube-maps.html"] subsuite = "webgl2-core" @@ -11930,11 +12098,15 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__texture-upload-size.html"] subsuite = "webgl2-core" -skip-if = ["os == 'android' && processor == 'aarch64'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance__textures__misc__texture-video-transparent.html"] subsuite = "webgl2-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__textures__misc__texture-with-flip-y-and-premultiply-alpha.html"] subsuite = "webgl2-core" @@ -11944,7 +12116,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__video-rotation.html"] subsuite = "webgl2-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance__textures__svg_image__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl2-ext" @@ -12114,9 +12288,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__uniforms__out-of-bounds-uniform-array-access.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'win'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__uniforms__uniform-default-values.html"] @@ -14512,11 +14685,15 @@ subsuite = "webgl2-deqp" ["generated/test_conformance__attribs__gl-bindAttribLocation-aliasing.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__attribs__gl-bindAttribLocation-matrix.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__attribs__gl-bindAttribLocation-nonexistent-attribute.html"] subsuite = "webgl1-core" @@ -14616,13 +14793,14 @@ subsuite = "webgl1-core" ["generated/test_conformance__canvas__drawingbuffer-hd-dpi-test.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__canvas__drawingbuffer-static-canvas-test.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__canvas__drawingbuffer-test.html"] @@ -14636,7 +14814,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__canvas__rapid-resizing.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__canvas__render-after-resize-test.html"] subsuite = "webgl1-core" @@ -14668,13 +14848,13 @@ subsuite = "webgl1-core" ["generated/test_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'linux'", - "os == 'android'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug && !swgl", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64' && debug && !swgl", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug && !swgl", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug && !swgl", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug && !swgl", ] ["generated/test_conformance__context__context-creation-and-destruction.html"] @@ -14682,11 +14862,15 @@ subsuite = "webgl1-core" ["generated/test_conformance__context__context-creation.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-eviction-with-garbage-collection.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-hidden-alpha.html"] subsuite = "webgl1-core" @@ -14702,15 +14886,21 @@ subsuite = "webgl1-core" ["generated/test_conformance__context__context-release-upon-reload.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-release-with-workers.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-size-change.html"] subsuite = "webgl1-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__context__context-type-test.html"] subsuite = "webgl1-core" @@ -14738,7 +14928,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__extensions__angle-instanced-arrays.html"] subsuite = "webgl1-core" -skip-if = ["os == 'mac' && os_version == '10.15'"] +skip-if = [ + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", +] ["generated/test_conformance__extensions__ext-blend-minmax.html"] subsuite = "webgl1-core" @@ -14811,7 +15003,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__extensions__oes-texture-float-with-video.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__extensions__oes-texture-float.html"] subsuite = "webgl1-core" @@ -14830,7 +15024,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__extensions__oes-texture-half-float-with-video.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__extensions__oes-texture-half-float.html"] subsuite = "webgl1-core" @@ -14873,7 +15069,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__extensions__webgl-depth-texture.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android' && os_version == '14'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__extensions__webgl-draw-buffers-broadcast-return.html"] subsuite = "webgl1-core" @@ -14907,7 +15105,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__array-of-struct-with-int-first-position.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__assign-to-swizzled-twice-in-function.html"] subsuite = "webgl1-ext" @@ -14920,22 +15120,30 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__compare-loop-index-to-uniform.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__complex-glsl-does-not-crash.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__compound-assignment-type-combination.html"] subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__conditional-discard-in-loop.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__conditional-discard-optimization.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__conditional-texture-fetch.html"] subsuite = "webgl1-ext" @@ -14951,15 +15159,21 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__floored-division-accuracy.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__fragcoord-linking-bug.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__gl-fragcoord-multisampling-bug.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__global-invariant-does-not-leak-across-shaders.html"] subsuite = "webgl1-ext" @@ -14978,44 +15192,60 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__logic-inside-block-without-braces.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__long-expressions-should-not-crash.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__loop-if-loop-gradient.html"] subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__modulo-arithmetic-accuracy.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__multiplication-assignment.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__nested-functions-should-not-crash.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__nested-loops-with-break-and-continue.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__nested-sequence-operator.html"] subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__pow-of-small-constant-in-user-defined-function.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__pow-with-constant-exponent-should-not-crash.html"] subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__qualcomm-crash.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__qualcomm-loop-with-continue-crash.html"] subsuite = "webgl1-ext" @@ -15025,25 +15255,29 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__sampler-array-using-loop-index.html"] subsuite = "webgl1-ext" -fail-if = ["os == 'linux' && os_version == '18.04' && display != 'wayland'"] ["generated/test_conformance__glsl__bugs__sampler-struct-function-arg.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__glsl__bugs__sequence-operator-evaluation-order.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__sketchfab-lighting-shader-crash.html"] subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__struct-constructor-highp-bug.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__struct-with-single-member-constructor.html"] subsuite = "webgl1-ext" @@ -15051,8 +15285,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__temp-expressions-should-not-crash.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'android'", - "os == 'linux'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__glsl__bugs__unary-minus-operator-float-bug.html"] @@ -15063,7 +15298,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__uniforms-should-not-lose-values.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__varying-arrays-should-not-be-reversed.html"] subsuite = "webgl1-ext" @@ -15071,8 +15308,8 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__vector-matrix-constructor-scalarization.html"] subsuite = "webgl1-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__bugs__vector-scalar-arithmetic-inside-loop-complex.html"] @@ -15084,52 +15321,58 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__constructors__glsl-construct-bvec2.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec3.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec4.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec2.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec3.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec4.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-mat2.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'linux' && asan"] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", +] ["generated/test_conformance__glsl__constructors__glsl-construct-mat3.html"] subsuite = "webgl1-ext" @@ -15139,16 +15382,19 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__constructors__glsl-construct-vec-mat-corner-cases.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-vec2.html"] @@ -15156,11 +15402,17 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__constructors__glsl-construct-vec3.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__constructors__glsl-construct-vec4.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__functions__glsl-function-abs.html"] subsuite = "webgl1-ext" @@ -15176,7 +15428,10 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__functions__glsl-function-atan.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__functions__glsl-function-ceil.html"] subsuite = "webgl1-ext" @@ -15258,7 +15513,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__functions__glsl-function-step-gentype.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__functions__glsl-function.html"] subsuite = "webgl1-ext" @@ -15500,9 +15757,8 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__misc__fragcolor-fragdata-invariant.html"] subsuite = "webgl1-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] @@ -15551,8 +15807,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__misc__shader-uniform-packing-restrictions.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'android'", - "os == 'linux' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland' && debug", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && debug", ] ["generated/test_conformance__glsl__misc__shader-varying-packing-restrictions.html"] @@ -15896,18 +16153,24 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__samplers__glsl-function-texture2dproj.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__samplers__glsl-function-texture2dprojlod.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__variables__gl-fragcoord-xy-values.html"] subsuite = "webgl1-ext" ["generated/test_conformance__glsl__variables__gl-fragcoord.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__variables__gl-fragdata-and-fragcolor.html"] subsuite = "webgl1-ext" @@ -15920,7 +16183,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__variables__glsl-built-ins.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__limits__gl-line-width.html"] subsuite = "webgl1-core" @@ -15933,7 +16198,10 @@ subsuite = "webgl1-core" ["generated/test_conformance__limits__gl-min-textures.html"] subsuite = "webgl1-core" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__limits__gl-min-uniforms.html"] subsuite = "webgl1-core" @@ -15941,16 +16209,18 @@ subsuite = "webgl1-core" ["generated/test_conformance__misc__bad-arguments-test.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__misc__boolean-argument-conversion.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__misc__delayed-drawing.html"] subsuite = "webgl1-core" @@ -15984,23 +16254,33 @@ subsuite = "webgl1-core" ["generated/test_conformance__misc__shader-precision-format.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__misc__type-conversion-test.html"] subsuite = "webgl1-core" -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] skip-if = [ - "os == 'android'", - "os == 'linux'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__misc__uninitialized-test.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__misc__webgl-specific-stencil-settings.html"] subsuite = "webgl1-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__misc__webgl-specific.html"] subsuite = "webgl1-core" @@ -16034,7 +16314,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__more__conformance__quickCheckAPI-D_G.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__more__conformance__quickCheckAPI-G_I.html"] subsuite = "webgl1-core" @@ -16101,7 +16383,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__more__functions__readPixelsBadArgs.html"] subsuite = "webgl1-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__more__functions__texImage2D.html"] subsuite = "webgl1-core" @@ -16111,7 +16395,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__more__functions__texImage2DHTML.html"] subsuite = "webgl1-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__more__functions__texImage2DHTMLBadArgs.html"] subsuite = "webgl1-core" @@ -16124,7 +16410,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__more__functions__texSubImage2DHTML.html"] subsuite = "webgl1-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__more__functions__texSubImage2DHTMLBadArgs.html"] subsuite = "webgl1-core" @@ -16206,7 +16494,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__ogles__GL__abs__abs_001_to_006.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android' && debug"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", +] ["generated/test_conformance__ogles__GL__acos__acos_001_to_006.html"] subsuite = "webgl1-ext" @@ -16309,7 +16599,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__ogles__GL__built_in_varying_array_out_of_bounds__built_in_varying_array_out_of_bounds_001_to_001.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__ogles__GL__ceil__ceil_001_to_006.html"] subsuite = "webgl1-ext" @@ -16457,7 +16749,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__ogles__GL__mat3__mat3_001_to_006.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__ogles__GL__mat__mat_001_to_008.html"] subsuite = "webgl1-ext" @@ -16497,7 +16791,10 @@ subsuite = "webgl1-ext" ["generated/test_conformance__ogles__GL__notEqual__notEqual_001_to_008.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__ogles__GL__notEqual__notEqual_009_to_012.html"] subsuite = "webgl1-ext" @@ -16537,7 +16834,10 @@ subsuite = "webgl1-ext" ["generated/test_conformance__ogles__GL__sign__sign_001_to_006.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__ogles__GL__sin__sin_001_to_006.html"] subsuite = "webgl1-ext" @@ -16677,8 +16977,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__reading__read-pixels-test.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android'", - "os == 'linux'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__renderbuffers__depth-renderbuffer-initialization.html"] @@ -16689,7 +16990,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__renderbuffers__framebuffer-object-attachment.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__renderbuffers__framebuffer-state-restoration.html"] subsuite = "webgl1-core" @@ -16720,7 +17023,10 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__clipping-wide-points.html"] subsuite = "webgl1-core" -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__rendering__color-mask-preserved-during-implicit-clears.html"] subsuite = "webgl1-core" @@ -16748,14 +17054,18 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__framebuffer-switch.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__rendering__framebuffer-texture-clear.html"] subsuite = "webgl1-core" ["generated/test_conformance__rendering__framebuffer-texture-switch.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__rendering__gl-clear.html"] subsuite = "webgl1-core" @@ -16774,9 +17084,11 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__gl-scissor-test.html"] subsuite = "webgl1-core" -fail-if = ["display == 'wayland'"] +fail-if = [ + "display == 'wayland'", +] skip-if = [ - "os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'", # Bug TBD + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__rendering__gl-viewport-test.html"] @@ -16787,13 +17099,12 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__line-rendering-quality.html"] subsuite = "webgl1-core" -fail-if = ["os == 'linux' && os_version == '18.04' && display != 'wayland'"] ["generated/test_conformance__rendering__many-draw-calls.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android'", "debug", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] ["generated/test_conformance__rendering__more-than-65536-indices.html"] @@ -16802,10 +17113,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__multisample-corruption.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__rendering__negative-one-index.html"] @@ -16834,7 +17144,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__preservedrawingbuffer-leak.html"] subsuite = "webgl1-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__rendering__rendering-sampling-feedback-loop.html"] subsuite = "webgl1-core" @@ -16842,12 +17154,12 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__rendering-stencil-large-viewport.html"] subsuite = "webgl1-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] skip-if = [ - "os == 'android'", - "os == 'win'", - "display == 'wayland'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__rendering__scissor-rect-repeated-rendering.html"] @@ -16858,7 +17170,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__texture-switch-performance.html"] subsuite = "webgl1-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__rendering__triangle.html"] subsuite = "webgl1-core" @@ -16886,7 +17200,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__state__gl-object-get-calls.html"] subsuite = "webgl1-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__state__state-uneffected-after-compositing.html"] subsuite = "webgl1-core" @@ -17085,35 +17401,51 @@ subsuite = "webgl1-ext" ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-luminance-luminance-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgb-rgb-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgb-rgb-unsigned_short_5_6_5.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_data__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl1-ext" @@ -17166,8 +17498,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__cube-map-uploads-out-of-order.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__textures__misc__default-texture.html"] @@ -17187,25 +17518,33 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__gl-teximage.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__mipmap-fbo.html"] subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__origin-clean-conformance-offscreencanvas.html"] subsuite = "webgl1-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__textures__misc__origin-clean-conformance.html"] subsuite = "webgl1-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__textures__misc__png-image-types.html"] subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__tex-image-and-sub-image-2d-with-array-buffer-view.html"] subsuite = "webgl1-core" -skip-if = ["os == 'win' && debug"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", +] ["generated/test_conformance__textures__misc__tex-image-and-uniform-binding-bugs.html"] subsuite = "webgl1-core" @@ -17215,14 +17554,18 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__tex-image-webgl.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__tex-image-with-format-and-type.html"] subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__tex-image-with-invalid-data.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__tex-input-validation.html"] subsuite = "webgl1-core" @@ -17236,8 +17579,8 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__tex-video-using-tex-unit-non-zero.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'win'", - "os == 'android' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__textures__misc__texparameter-test.html"] @@ -17267,8 +17610,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__texture-corner-case-videos.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android'", - "os == 'linux' && os_version == '18.04'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] ["generated/test_conformance__textures__misc__texture-cube-as-fbo-attachment.html"] @@ -17288,42 +17630,54 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__texture-mips.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__texture-npot-video.html"] subsuite = "webgl1-core" skip-if = [ "win11_2009", # win11 - 50/50 intermittent - "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", # win11 - 50/50 intermittent - "os == 'android' && os_version == '14'", # Bug 1873144 + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", # win11 - 50/50 intermittent + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1873144 ] ["generated/test_conformance__textures__misc__texture-npot.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__texture-size-cube-maps.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__texture-size-limit.html"] subsuite = "webgl1-core" -skip-if = ["os == 'linux' && asan"] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", +] ["generated/test_conformance__textures__misc__texture-size.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__textures__misc__texture-srgb-upload.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android' && processor == 'aarch64'"] # Bug 1796057 +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 +] ["generated/test_conformance__textures__misc__texture-sub-image-cube-maps.html"] subsuite = "webgl1-core" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__texture-transparent-pixels-initialized.html"] subsuite = "webgl1-core" @@ -17334,13 +17688,15 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__texture-upload-size.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'win'", - "os == 'android'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] ["generated/test_conformance__textures__misc__texture-video-transparent.html"] subsuite = "webgl1-core" -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__textures__misc__texture-with-flip-y-and-premultiply-alpha.html"] subsuite = "webgl1-core" @@ -17350,7 +17706,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__video-rotation.html"] subsuite = "webgl1-core" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_conformance__textures__svg_image__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl1-ext" @@ -17378,43 +17736,53 @@ subsuite = "webgl1-ext" ["generated/test_conformance__textures__video__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-luminance-luminance-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_byte.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'android'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_short_5_6_5.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_byte.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'android'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"] subsuite = "webgl1-ext" -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__webgl_canvas__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl1-ext" @@ -17536,17 +17904,17 @@ subsuite = "webgl1-core" ["generated/test_conformance__uniforms__out-of-bounds-uniform-array-access.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] ["generated/test_conformance__uniforms__uniform-default-values.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android'", - "os == 'linux'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__uniforms__uniform-location.html"] @@ -17557,7 +17925,9 @@ subsuite = "webgl1-core" ["generated/test_conformance__uniforms__uniform-values-per-program.html"] subsuite = "webgl1-core" -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_deqp__data__gles2__shaders__conditionals.html"] subsuite = "webgl1-ext" diff --git a/dom/canvas/test/webgl-conf/mochitest-errata.toml b/dom/canvas/test/webgl-conf/mochitest-errata.toml @@ -9,6 +9,7 @@ # https://en.wikipedia.org/wiki/Android_version_history # * Android 13.0: 33 (pixel 5 phones) # * Android 14.0: 34 (samsung a55 phones) +# See also testing/mozbase/mozinfo/mozinfo/platforminfo.py ########## # os_version strings @@ -20,58 +21,73 @@ prefs = "media.seamless-looping-video=false" ["generated/test_..__always-fail.html"] -fail-if = ["true"] +fail-if = [ + "true", +] #################### # Failures from 2024-04 CTS update ["generated/test_2_conformance2__attribs__gl-bindAttribLocation-aliasing-inactive.html"] fail-if = [ - "os == 'linux'", - "os == 'mac'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] ["generated/test_2_conformance2__attribs__gl-vertex-attrib-i-render.html"] # timed out crash -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__attribs__gl-vertex-attrib.html"] # random timed out -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__buffers__get-buffer-sub-data.html"] -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__context__context-attributes-depth-stencil-antialias-obeyed.html"] fail-if = [ - "os == 'android'", - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] tags = "os_integration" ["generated/test_2_conformance2__extensions__ext-color-buffer-float.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", ] ["generated/test_2_conformance2__extensions__ext-texture-norm16.html"] -skip-if = ["os == 'android'"] #Bug 1658801 +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", #Bug 1658801 +] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", - "os == 'linux'", ] ["generated/test_2_conformance2__extensions__ovr_multiview2.html"] # Windows failure: ANGLE bug: FAIL #extension GL_OVR_multiview must be forbidden. # Because we have to enable multiview1 to get ANGLE to emit gl_ViewID_OVR. -fail-if = ["os == 'win'"] -skip-if = ["os == 'android'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] #[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - GPU: UNKNOWN #[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Crash reason: SIGSEGV /SEGV_MAPERR #[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Crash address: 0x0 @@ -130,10 +146,14 @@ skip-if = ["os == 'android'"] #[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - Found by: call frame info ["generated/test_2_conformance2__extensions__ovr_multiview2_depth.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_draw_buffers.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] # https://bugzilla.mozilla.org/show_bug.cgi?id=1810021 # # Currently getting failures like the following: @@ -152,35 +172,46 @@ skip-if = ["os == 'android'"] # > the right edge of view 2 of color attachment 2 should be untouched # > the left edge of view 3 of color attachment 2 should be untouched # > ``` -fail-if = ["os == 'win' && debug"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_instanced_draw.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_single_view_operations.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance2__extensions__ovr_multiview2_transform_feedback.html"] ["generated/test_2_conformance2__extensions__required-extensions.html"] # has_etc1 == has_etc should be true. Was false -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance2__extensions__webgl-multi-draw-instanced-base-vertex-base-instance.html"] # instid_prog: Expected [0,0,0,0], was [0,1,1,1]. desc: {"name":"drawArraysInstanced","base_vert":0,"vert_count":1,"base_inst":0,"inst_count":1,"first_vert":1} fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__glsl3__loops-with-side-effects.html"] # application crashed [@ nvoglv32.dll + 0x999512] -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__glsl3__matrix-row-major-dynamic-indexing.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ######################################################################## @@ -190,62 +221,67 @@ fail-if = [ ["generated/test_2_conformance2__glsl3__switch-case.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1725442 -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__glsl3__texture-bias.html"] # should be: 3,3,3,3 # should be: 13,13,13,13 -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] #################### # Bugs surfaced during fx106 CTS update ["generated/test_2_conformance2__glsl3__tricky-loop-conditions.html"] -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__glsl3__uniform-location-length-limits.html"] # time out crash -skip-if = ["os == 'win' && debug"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", +] ["generated/test_2_conformance2__glsl3__valid-invariant.html"] -fail-if = ["os == 'linux' && os_version == '18.04' && display != 'wayland'"] # [unexpected link status] vertex shader with invariant varying and fragment shader with variant varying must succeed # [unexpected link status] vertex shader with invariant (global setting) varying and fragment shader with variant varying must succeed # [unexpected link status] vertex shader with invariant (separately set) varying and fragment shader with variant varying must succeed ["generated/test_2_conformance2__glsl3__vector-dynamic-indexing-swizzled-lvalue.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__glsl3__vector-dynamic-indexing.html"] skip-if = [ - "os == 'win'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__misc__expando-loss-2.html"] skip-if = [ - "os == 'android'", - "os == 'linux'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_2_conformance2__misc__uninitialized-test-2.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", - "os == 'android' && os_version == '14'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__offscreencanvas__offscreencanvas-sync.html"] # Timeout skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && opt", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && opt", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64' && opt", ] @@ -253,13 +289,17 @@ skip-if = [ # gl.getFragDataLocation(programEs2, 'gl_FragColor') should be -1. Was 0. ["generated/test_2_conformance2__query__occlusion-query-scissor.html"] -skip-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance2__query__occlusion-query.html"] # Test timed out # called finish() multiple times # (broken test) -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__reading__format-r11f-g11f-b10f.html"] @@ -267,17 +307,20 @@ skip-if = ["true"] # Test timed out # called finish() multiple times # (broken test) -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__reading__read-pixels-into-pixel-pack-buffer.html"] # getError expected: INVALID_ENUM. Was INVALID_OPERATION : Format should not be able to read as DEPTH_STENCIL -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__renderbuffers__multisample-draws-between-blits.html"] # "whole thing" and more fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__renderbuffers__multisampled-depth-renderbuffer-initialization.html"] @@ -290,38 +333,42 @@ fail-if = [ ["generated/test_2_conformance2__renderbuffers__readbuffer.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1726625 # getError expected: INVALID_OPERATION. Was INVALID_ENUM : calling readBuffer with GL_COLOR_ATTACHMENTi that exceeds MAX_COLOR_ATTACHMENT on fbo should generate INVALID_OPERATION -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__rendering__blitframebuffer-filter-srgb.html"] fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] ["generated/test_2_conformance2__rendering__blitframebuffer-multisampled-readbuffer.html"] fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__rendering__blitframebuffer-resolve-to-back-buffer.html"] # ABORT_ON_ERROR -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__rendering__clipping-wide-points.html"] -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance2__rendering__draw-buffers-sparse-output-locations.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1726624 # Flakey? # check COLOR_ATTACHMENT0 skip-if = [ - "os == 'win'", - "os == 'android' && os_version == '14'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] # - @@ -330,20 +377,23 @@ skip-if = [ ["generated/test_2_conformance2__rendering__framebuffer-mismatched-attachment-targets.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1725283 # E.g. framebuffer layer 0 should be drawn green -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__rendering__framebuffer-render-to-layer-angle-issue.html"] # framebuffer layer 0 should be green # framebuffer layer 1 should be green -fail-if = ["os == 'win'"] +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance2__rendering__framebuffer-render-to-layer.html"] # pixel 0,0 channel 2 was 51 expected 63 +/- 9 fail-if = [ - "os == 'android'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] @@ -353,39 +403,43 @@ fail-if = [ ["generated/test_2_conformance2__rendering__framebuffer-texture-level1.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", +] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] -skip-if = ["os == 'linux'"] # Crash in `swrast_dri.so!st_finalize_texture` ["generated/test_2_conformance2__rendering__framebuffer-to-texture.html"] # checkFramebufferStatus expected: FRAMEBUFFER_COMPLETE. Was FRAMEBUFFER_INCOMPLETE_ATTACHMENT fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__rendering__line-rendering-quality.html"] fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] # Found 0 lines, looking in the vertical direction, expected 2 ["generated/test_2_conformance2__rendering__multisampling-depth-resolve.html"] # multisampling-depth-resolve: outer pixels should be red fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__rendering__texture-switch-performance.html"] # Orange on OSX+debug -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__rendering__uniform-block-buffer-size.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] # [task 2020-01-07T01:44:09.858Z] 01:44:09 WARNING - PROCESS-CRASH | dom/canvas/test/webgl-conf/generated/test_2_conformance2__rendering__uniform-block-buffer-size.html | application crashed [@ mozilla::gfx::Log<1, mozilla::gfx::CriticalLogger>::WriteLog(std::__ndk1::basic_string<char, std::__ndk1::char_traits<char>, std::__ndk1::allocator<char> > const&)] # [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - Crash dump filename: /tmp/tmpc7PIpQ/54957c68-e992-3e79-0598-34251a47e519.dmp # [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - Operating system: Android @@ -444,477 +498,524 @@ skip-if = ["os == 'android'"] ["generated/test_2_conformance2__state__gl-get-calls.html"] fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance2__state__gl-object-get-calls.html"] # Really really slow on IPC mode. Update test suite to get faster/quick-mode test. -skip-if = ["true"] +skip-if = [ + "true", +] # Also fails on Linux still? -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] # - # Large tex allocations ["generated/test_2_conformance2__textures__canvas__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__canvas__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r16f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r16f-red-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r32f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r8-red-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r8ui-red_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg16f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg16f-rg-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg32f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg8-rg-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg8ui-rg_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb16f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb16f-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb32f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb565-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb5_a1-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb9_e5-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb9_e5-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba16f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba16f-rgba-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba32f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba4-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-srgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r16f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r16f-red-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r32f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r8-red-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r8ui-red_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg16f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg16f-rg-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg32f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg8-rg-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg8ui-rg_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image__tex-3d-rgb16f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb16f-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb32f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb565-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb5_a1-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb9_e5-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb9_e5-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba32f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba4-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-srgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__image_bitmap_from_blob__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_blob__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_canvas__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_canvas__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image_bitmap__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image_bitmap__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image_data__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_image_data__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_video__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_bitmap_from_video__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_data__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__image_data__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__misc__copy-texture-cube-map-bug.html"] -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] # [task 2019-12-27T02:30:35.051Z] 02:30:35 INFO - GECKO(1114) | Assertion failure: err == 0x0505, at /builds/worker/workspace/build/src/gfx/gl/SharedSurfaceGL.cpp:31 # [task 2019-12-27T02:30:56.779Z] 02:30:56 INFO - GECKO(1114) | #01: mozilla::gl::SurfaceFactory_Basic::CreateShared(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&) [gfx/gl/SharedSurfaceGL.h:82] # [task 2019-12-27T02:30:56.786Z] 02:30:56 INFO - GECKO(1114) | #02: mozilla::gl::SurfaceFactory::NewTexClient(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&) [gfx/gl/SharedSurface.cpp:301] @@ -928,9 +1029,10 @@ skip-if = ["os == 'linux'"] ["generated/test_2_conformance2__textures__misc__copy-texture-image-same-texture.html"] skip-if = [ - "os == 'linux'", - "os == 'win'", - "os == 'android' && os_version == '14'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__generate-mipmap-with-large-base-level.html"] @@ -939,20 +1041,23 @@ skip-if = [ ["generated/test_2_conformance2__textures__misc__immutable-tex-render-feedback.html"] # E.g. getError expected: NO_ERROR. Was INVALID_VALUE : after draw with texture fail-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] # Assertion failure: [GFX1]: void mozilla::gl::GLContext::fFramebufferTexture2D(GLenum, GLenum, GLenum, GLuint, GLint): Generated unexpected GL_INVALID_VALUE error skip-if = [ - "os == 'linux' && debug", - "os == 'android' && os_version == '14' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland' && debug", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && debug", ] ["generated/test_2_conformance2__textures__misc__origin-clean-conformance-offscreencanvas.html"] -skip-if = ["true"] +skip-if = [ + "true", +] #################### @@ -960,388 +1065,427 @@ skip-if = ["true"] ["generated/test_2_conformance2__textures__misc__tex-3d-mipmap-levels-intel-bug.html"] fail-if = [ - "win11_2009", - "os == 'win' && os_version == '11.26100' && processor == 'x86'", - "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-base-level-bug.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] # macosx1014 due to 1563418 ["generated/test_2_conformance2__textures__misc__tex-image-10bpc.html"] # gl.checkFramebufferStatus(gl.FRAMEBUFFER) should be 36053. Was 36054. # uniquePixels.size should be >= 7. Was 1 (of type number). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__misc__tex-image-with-bad-args-from-dom-elements.html"] skip-if = [ - "os == 'win'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android' && processor == 'aarch64'", # Bug 1687073 + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1687073 + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-input-validation.html"] skip-if = [ - "os == 'android'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-mipmap-levels.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", - "win11_2009", - "os == 'win' && os_version == '11.26100' && processor == 'x86'", - "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-srgb-mipmap.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-unpack-params-imagedata.html"] # areArraysEqual(actual, expected) should be true. Was false. fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-unpack-params-with-flip-y-and-premultiply-alpha.html"] -fail-if = ["true"] +fail-if = [ + "true", +] #################################################### # Bugs ["generated/test_2_conformance2__textures__misc__tex-unpack-params.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64' && debug", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug", ] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] ["generated/test_2_conformance2__textures__svg_image__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__svg_image__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__video__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r16f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r16f-red-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r32f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r8-red-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r8ui-red_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg16f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg16f-rg-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg32f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg8-rg-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg8ui-rg_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__video__tex-3d-rgb16f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb16f-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb32f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb565-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb5_a1-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb9_e5-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb9_e5-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba16f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba16f-rgba-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba32f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba4-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-srgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance2__textures__webgl_canvas__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__textures__webgl_canvas__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"] -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__transform_feedback__too-small-buffers.html"] # ABORT_ON_ERROR -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance2__transform_feedback__transform_feedback.html"] # Linux: Assertion failure: [GFX1]: void mozilla::gl::GLContext::fTransformFeedbackVaryings(GLuint, GLsizei, const GLchar *const *, GLenum): Generated unexpected GL_INVALID_OPERATION error # Android: void mozilla::gl::GLContext::fDeleteTransformFeedbacks(GLsizei, const GLuint *): Generated unexpected GL_INVALID_OPERATION error. skip-if = [ - "os == 'linux'", - "os == 'android' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_2_conformance2__wasm__bufferdata-16gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__bufferdata-4gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__buffersubdata-16gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__buffersubdata-4gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__getbuffersubdata-16gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__getbuffersubdata-4gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__readpixels-16gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__readpixels-4gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__teximage2d-16gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__teximage2d-4gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__texsubimage2d-16gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance2__wasm__texsubimage2d-4gb-wasm-memory.html"] # successfullyParsed should be true (of type boolean). Was undefined (of type undefined). -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance__canvas__canvas-test.html"] # this test is not always passed every time on opt and debug build -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win', && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__canvas__to-data-url-test.html"] # TEST-UNEXPECTED-ERROR: Assertion count 1 is greater than expected range 0-0 assertions -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__context__context-attribute-preserve-drawing-buffer.html"] ["generated/test_2_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"] # contextAttribs.antialias should be true. Was false fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] ["generated/test_2_conformance__extensions__webgl-compressed-texture-astc.html"] -skip-if = ["os == 'android' && debug"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", +] ["generated/test_2_conformance__extensions__webgl-compressed-texture-size-limit.html"] ["generated/test_2_conformance__glsl__bugs__sampler-array-using-loop-index.html"] -fail-if = ["os == 'linux' && os_version == '18.04' && display != 'wayland'"] ["generated/test_2_conformance__glsl__bugs__vector-matrix-constructor-scalarization.html"] # Ditto fail-if = [ - "os == 'android' && opt", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'android' && os_version == '14' && arch == 'aarch64' && opt", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_2_conformance__glsl__constructors__glsl-construct-bvec2.html"] @@ -1361,11 +1505,11 @@ fail-if = [ ["generated/test_2_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"] # skip this test because finish() was called multiple times skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__glsl__constructors__glsl-construct-vec2.html"] @@ -1376,9 +1520,8 @@ skip-if = [ ["generated/test_2_conformance__glsl__misc__fragcolor-fragdata-invariant.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] # [unexpected fragment shader compile status] (expected: true) Declaring both gl_FragColor and gl_FragData invariant should succeed. @@ -1390,139 +1533,164 @@ fail-if = [ ["generated/test_2_conformance__limits__gl-line-width.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_2_conformance__misc__bad-arguments-test.html"] # skip because some result logged after SimpleTest.finish() skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__misc__type-conversion-test.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", ] ["generated/test_2_conformance__misc__uninitialized-test.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1725286 # E.g. gl.checkFramebufferStatus(gl.FRAMEBUFFER) should be 36053. Was 0 +fail-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && asan", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && ccov", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && opt", +] skip-if = [ - "os == 'win' && debug", - "os == 'android' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", ] -fail-if = ["os == 'win' && !debug"] ["generated/test_2_conformance__misc__webgl-specific-stencil-settings.html"] # [gl:0D6DE000] mozilla::gl::GLContext::raw_fDrawArrays: Generated unexpected GL_INVALID_OPERATION error. (0x0502) # ERR: gl::ValidateDrawBase(2519): This ANGLE implementation does not support separate front/back stencil writemasks, reference values, or stencil mask values. # Hit MOZ_CRASH(Unexpected error with MOZ_GL_DEBUG_ABORT_ON_ERROR. (Run with MOZ_GL_DEBUG_ABORT_ON_ERROR=0 to disable)) at z:/build/build/src/gfx/gl/GLContext.cpp:3030 -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__more__functions__readPixelsBadArgs.html"] # (TODO) FATAL ERROR: Non-local network connections are disabled and a connection attempt to www.opengl.org (45.55.206.190) was made. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__more__functions__texImage2DHTML.html"] # (TODO) FATAL ERROR: Non-local network connections are disabled and a connection attempt to mashable.com (88.221.93.55) was made. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__more__functions__texSubImage2DHTML.html"] # (TODO) FATAL ERROR: Non-local network connections are disabled and a connection attempt to mashable.com (184.50.232.90) was made. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__ogles__GL__built_in_varying_array_out_of_bounds__built_in_varying_array_out_of_bounds_001_to_001.html"] # time out crash -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__ogles__GL__struct__struct_025_to_032.html"] # application crashed [@ nvoglv32.dll + 0x90b445] -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__rendering__bind-framebuffer-flush-bug.html"] ["generated/test_2_conformance__rendering__blending.html"] ["generated/test_2_conformance__rendering__gl-scissor-test.html"] -fail-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] +fail-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_2_conformance__rendering__line-rendering-quality.html"] fail-if = [ - "os == 'linux' && os_version == '18.04'", - "os == 'linux' && os_version == '22.04'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", ] # Found 0 lines, looking in the vertical direction, expected 2 ["generated/test_2_conformance__rendering__many-draw-calls.html"] # Appears to just take too long on debug, most of the time. -skip-if = ["debug"] +skip-if = [ + "debug", +] ["generated/test_2_conformance__rendering__preservedrawingbuffer-leak.html"] -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__rendering__rendering-stencil-large-viewport.html"] # same as webgl1 test -fail-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] +fail-if = [ + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", +] skip-if = [ - "os == 'android'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__rendering__texture-switch-performance.html"] # Orange on win10+debug # Texture switching significantly hurt performance - achieved 3 frames in 2.164 -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__textures__misc__copy-tex-image-2d-formats.html"] # Assertion: ""GFX: We should have caught all other errors"" in WebGLTextureUpload.cpp skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_2_conformance__textures__misc__cube-map-uploads-out-of-order.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_2_conformance__textures__misc__mipmap-fbo.html"] ["generated/test_2_conformance__textures__misc__origin-clean-conformance-offscreencanvas.html"] -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__textures__misc__origin-clean-conformance.html"] # (TODO) FATAL ERROR: Non-local network connections are disabled and a connection attempt to www.opengl.org (104.131.58.36) was made. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__textures__misc__tex-image-and-sub-image-2d-with-array-buffer-view.html"] ["generated/test_2_conformance__textures__misc__tex-video-using-tex-unit-non-zero.html"] skip-if = [ - "os == 'win'", - "os == 'android' && debug", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && !debug", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", ] ["generated/test_2_conformance__textures__misc__texture-corner-case-videos.html"] # Timeout. Bug 1599937 skip-if = [ - "os == 'android'", - "os == 'linux' && os_version == '18.04'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] ["generated/test_2_conformance__textures__misc__texture-size-cube-maps.html"] # Random failures -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_2_conformance__textures__misc__texture-size-limit.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1657084 # Really slow on ASAN (after driver update?), likely due to ASAN's perf impact on the huge allocations in this test. -skip-if = ["os == 'linux' && asan"] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", +] ######################################################################## # Global @@ -1531,90 +1699,116 @@ skip-if = ["os == 'linux' && asan"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1657084 # Really slow on ASAN (after driver update?), likely due to ASAN's perf impact on the huge allocations in this test. skip-if = [ - "os == 'linux' && asan", - "os == 'win'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_2_conformance__textures__misc__texture-srgb-upload.html"] -skip-if = ["os == 'android' && processor == 'aarch64'"] # Bug 1796057 +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 +] ["generated/test_2_conformance__textures__misc__texture-upload-size.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1687071 # getError expected: NO_ERROR. Was INVALID_VALUE : when calling texSubImage2D with the same texture upload -skip-if = ["os == 'android' && processor == 'aarch64'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_2_conformance__textures__misc__texture-video-transparent.html"] # Assertion failure: [GFX1]: Unhandled srcImage->GetFormat(): 2 # mac opt seems to pass, though linux and win fail. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_2_conformance__textures__misc__video-rotation.html"] # Ditto -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_2_conformance__uniforms__out-of-bounds-uniform-array-access.html"] # application terminated skip-if = [ - "os == 'win'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__attribs__gl-bindAttribLocation-aliasing.html"] # OOM crash -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__attribs__gl-bindAttribLocation-matrix.html"] # OOM crash -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__canvas__drawingbuffer-hd-dpi-test.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__canvas__drawingbuffer-static-canvas-test.html"] # Intermittent crash on OSX. skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__canvas__rapid-resizing.html"] # Frequent orange crash. -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"] # Asserts on linux debug. Crashes on Android. skip-if = [ - "os == 'linux'", - "os == 'android'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] # should be 0,0,0,255 fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug && !swgl", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64' && debug && !swgl", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug && !swgl", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug && !swgl", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug && !swgl", ] ["generated/test_conformance__context__context-creation.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-eviction-with-garbage-collection.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-release-upon-reload.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-release-with-workers.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__context__context-size-change.html"] -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__extensions__angle-instanced-arrays.html"] -skip-if = ["os == 'mac' && os_version == '10.15'"] +skip-if = [ + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", +] ["generated/test_conformance__extensions__ext-sRGB.html"] @@ -1622,208 +1816,272 @@ skip-if = ["os == 'mac' && os_version == '10.15'"] ["generated/test_conformance__extensions__oes-texture-float-with-video.html"] # Timeout -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__extensions__oes-texture-half-float-with-image-data.html"] ["generated/test_conformance__extensions__oes-texture-half-float-with-video.html"] # Timeout -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__extensions__oes-texture-half-float.html"] ["generated/test_conformance__extensions__webgl-compressed-texture-size-limit.html"] ["generated/test_conformance__extensions__webgl-depth-texture.html"] -skip-if = ["os == 'android' && os_version == '14'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__array-of-struct-with-int-first-position.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__compare-loop-index-to-uniform.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__complex-glsl-does-not-crash.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__conditional-discard-in-loop.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__conditional-discard-optimization.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__floored-division-accuracy.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__fragcoord-linking-bug.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__gl-fragcoord-multisampling-bug.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__logic-inside-block-without-braces.html"] # application crashed [@ MustSkipMarking<JSObject*>] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__long-expressions-should-not-crash.html"] # Android: Crashes sometimes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__modulo-arithmetic-accuracy.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__multiplication-assignment.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__nested-functions-should-not-crash.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__nested-loops-with-break-and-continue.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__pow-of-small-constant-in-user-defined-function.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__qualcomm-crash.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__sampler-array-using-loop-index.html"] # Testfail on Linux after removing SH_UNROLL_FOR_LOOP_WITH_SAMPLER_ARRAY_INDEX. # Only happen on tryserver -fail-if = ["os == 'linux' && os_version == '18.04' && display != 'wayland'"] ["generated/test_conformance__glsl__bugs__sampler-struct-function-arg.html"] # Crashes skip-if = [ - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__glsl__bugs__sequence-operator-evaluation-order.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__struct-constructor-highp-bug.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__temp-expressions-should-not-crash.html"] # Coincidentally enough, crashes on Linux and Android 4.0. skip-if = [ - "os == 'android'", - "os == 'linux'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__glsl__bugs__uniforms-should-not-lose-values.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__bugs__vector-matrix-constructor-scalarization.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1725075 fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec2.html"] # mozalloc_abort in libglsl.so skip-if = [ - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec3.html"] # Crashes from libglsl.so # application crashed [@ jemalloc_crash] on Android skip-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec4.html"] # application crashed [@ ParseOperand::GetLogicalSize() const + 0x4] skip-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec2.html"] # Crashes from libglsl.so -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec3.html"] # application crashed [@ ParseOperand::GetLogicalSize() const + 0x4] # application crashed [@ jemalloc_crash] on Android skip-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec4.html"] # Assume crashes like ivec3 skip-if = [ - "os == 'linux'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-mat2.html"] # Crashes on Linux ASAN -skip-if = ["os == 'linux' && asan"] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", +] ["generated/test_conformance__glsl__constructors__glsl-construct-vec-mat-corner-cases.html"] # mozalloc_abort in libglsl.so -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"] # skip this test because finish() was called multiple times skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-vec3.html"] # Crashes -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__constructors__glsl-construct-vec4.html"] # Inferred crash from vec3 above. -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__functions__glsl-function-atan.html"] # Crashes -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__glsl__functions__glsl-function-step-gentype.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__misc__fragcolor-fragdata-invariant.html"] # [unexpected fragment shader compile status] (expected: true) Declaring both gl_FragColor and gl_FragData invariant should succeed. fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] @@ -1836,110 +2094,157 @@ fail-if = [ ["generated/test_conformance__glsl__misc__shader-uniform-packing-restrictions.html"] # Frequent timeout on win7 and linux debug. skip-if = [ - "os == 'android'", - "os == 'linux' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland' && debug", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && debug", ] ["generated/test_conformance__glsl__samplers__glsl-function-texture2dproj.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__samplers__glsl-function-texture2dprojlod.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__variables__gl-fragcoord.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__glsl__variables__glsl-built-ins.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__limits__gl-min-textures.html"] # mesa upgrade issues or task cluster issues- we just need it green; bug 1220658 -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__misc__bad-arguments-test.html"] # skip because some result logged after SimpleTest.finish() skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'win'", - "os == 'linux'", - "os == 'android'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__misc__boolean-argument-conversion.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__misc__shader-precision-format.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__misc__type-conversion-test.html"] -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] # Resets device on Android 2.3. # Crashes on desktop Linux. skip-if = [ - "os == 'android'", - "os == 'linux'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__misc__uninitialized-test.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__misc__webgl-specific-stencil-settings.html"] -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__more__conformance__quickCheckAPI-D_G.html"] # void mozilla::gl::GLContext::fGenerateMipmap(GLenum): Generated unexpected GL_INVALID_ENUM error. (0x0500) -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__more__functions__readPixelsBadArgs.html"] # (TODO) FATAL ERROR: Non-local network connections are disabled and a connection attempt to www.opengl.org (45.55.206.190) was made. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__more__functions__texImage2DHTML.html"] # (TODO) FATAL ERROR: Non-local network connections are disabled and a connection attempt to mashable.com (88.221.93.55) was made. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__more__functions__texSubImage2DHTML.html"] # (TODO) FATAL ERROR: Non-local network connections are disabled and a connection attempt to mashable.com (184.50.232.90) was made. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__ogles__GL__abs__abs_001_to_006.html"] # Test suite terminates, e.g. at pixel @ (412, 253 was [191,0,0,255] expected [98,0,0,255]. Bug 1897792 -skip-if = ["os == 'android' && debug"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", +] ["generated/test_conformance__ogles__GL__built_in_varying_array_out_of_bounds__built_in_varying_array_out_of_bounds_001_to_001.html"] # time out crash -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__ogles__GL__mat3__mat3_001_to_006.html"] # Timeout on D3D11 -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__ogles__GL__notEqual__notEqual_001_to_008.html"] # Crashes -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__ogles__GL__sign__sign_001_to_006.html"] # Crashes -skip-if = ["os == 'linux'"] +skip-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__reading__read-pixels-test.html"] # Causes consistent *blues*: "DMError: Remote Device Error: unable to # connect to 127.0.0.1 after 5 attempts" on 'Android 2.3 Opt'. skip-if = [ - "os == 'android'", - "os == 'linux'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", ] ["generated/test_conformance__renderbuffers__framebuffer-object-attachment.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ######################################################################## ######################################################################## @@ -1952,19 +2257,30 @@ skip-if = ["os == 'android'"] # dom/canvas/test/webgl-conf/generated/test_conformance__rendering__blending.html | Expected [100,2,3,4], was [1,2,3,4] ["generated/test_conformance__rendering__clipping-wide-points.html"] -fail-if = ["os == 'linux'"] +fail-if = [ + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] ["generated/test_conformance__rendering__framebuffer-switch.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__rendering__framebuffer-texture-switch.html"] # Crashes -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__rendering__gl-scissor-test.html"] -fail-if = ["display == 'wayland'"] -skip-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] +fail-if = [ + "display == 'wayland'", +] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", +] #################### @@ -1972,31 +2288,31 @@ skip-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && d ["generated/test_conformance__rendering__line-rendering-quality.html"] # Found 0 lines, looking in the vertical direction, expected 2 -fail-if = ["os == 'linux' && os_version == '18.04' && display != 'wayland'"] ["generated/test_conformance__rendering__many-draw-calls.html"] # Crashes on Android # Times-out on DEBUG builds skip-if = [ - "os == 'android'", "debug", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] ["generated/test_conformance__rendering__multisample-corruption.html"] # application crashed [@ gldAttachDrawable + 0x9e0]. Also crash on Android. skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", - "os == 'android'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__rendering__preservedrawingbuffer-leak.html"] -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +] ["generated/test_conformance__rendering__rendering-stencil-large-viewport.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] # 02:52:43 INFO - GECKO(1000) | JavaScript warning: http://mochi.test:8888/tests/dom/canvas/test/webgl-conf/checkout/conformance/rendering/rendering-stencil-large-viewport.html, line 85: Error: WebGL warning: Requested size 32767x32767 was too large, but resize to 16383x16383 succeeded. # 02:52:43 INFO - GECKO(1000) | JavaScript warning: http://mochi.test:8888/tests/dom/canvas/test/webgl-conf/checkout/conformance/rendering/rendering-stencil-large-viewport.html, line 85: Error: WebGL warning: drawArrays: Drawing to a destination rect smaller than the viewport rect. (This warning will only be given once) @@ -2012,22 +2328,28 @@ fail-if = [ # 02:53:02 INFO - GECKO(1000) | #04: mozilla::layers::CanvasClientSharedSurface::Update(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>,mozilla::layers::ShareableCanvasRenderer *) [gfx/layers/client/CanvasClient.cpp:381] # 02:53:02 INFO - GECKO(1000) | #05: mozilla::layers::ShareableCanvasRenderer::UpdateCompositableClient() [gfx/layers/ShareableCanvasRenderer.cpp:237] skip-if = [ - "os == 'android'", - "os == 'win'", - "display == 'wayland'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__rendering__texture-switch-performance.html"] # Frequent orange on linux+asan, but likely intermittant: # Texture switching significantly hurt performance - achieved 77 frames in 2.016 seconds (0.79 times baseline performance) -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__state__gl-object-get-calls.html"] # Really really slow on IPC mode. Update test suite to get faster/quick-mode test. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-alpha-alpha-unsigned_byte.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] #[task 2020-01-06T23:59:59.859Z] 23:59:59 WARNING - PROCESS-CRASH | dom/canvas/test/webgl-conf/generated/test_conformance__textures__image_bitmap_from_video__tex-2d-alpha-alpha-unsigned_byte.html | application crashed [@ RefPtr<mozilla::gfx::SourceSurface>::operator->() const] #[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Crash dump filename: /tmp/tmpJ24uPs/47e5f8af-bbd2-5a7d-2a9b-a1455e27b452.dmp #[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Operating system: Android @@ -2063,25 +2385,39 @@ skip-if = ["os == 'android'"] #[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Found by: call frame info ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-luminance-luminance-unsigned_byte.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgb-rgb-unsigned_byte.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgb-rgb-unsigned_short_5_6_5.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_byte.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__cube-map-uploads-out-of-order.html"] #19:53:21 INFO - 0 libsystem_platform.dylib!_platform_memmove$VARIANT$Unknown + 0x144 @@ -2148,32 +2484,44 @@ skip-if = ["os == 'android'"] #19:53:21 INFO - r15 = 0xfff8800000001401 rip = 0x000000010f8a563f #19:53:21 INFO - Found by: call frame info skip-if = [ - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__textures__misc__gl-teximage.html"] # application crashed [@ jemalloc_crash] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__mipmap-fbo.html"] ["generated/test_conformance__textures__misc__origin-clean-conformance-offscreencanvas.html"] -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__textures__misc__origin-clean-conformance.html"] # (TODO) FATAL ERROR: Non-local network connections are disabled and a connection attempt to www.opengl.org (104.131.58.36) was made. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__textures__misc__tex-image-and-sub-image-2d-with-array-buffer-view.html"] # time out crash -skip-if = ["os == 'win' && debug"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", +] ["generated/test_conformance__textures__misc__tex-image-webgl.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__tex-image-with-invalid-data.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] + #################### # Timeouts @@ -2181,119 +2529,146 @@ skip-if = ["os == 'android'"] # Fails on QuantumRender configs, but passes on standard configs? # Might be intermittant. skip-if = [ - "os == 'win'", - "os == 'android' && debug", + "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__textures__misc__texture-corner-case-videos.html"] # Timeout. Bug 1599937 - test fails consistently on ubuntu1804. skip-if = [ - "os == 'android'", - "os == 'linux' && os_version == '18.04'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] ["generated/test_conformance__textures__misc__texture-mips.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__texture-npot-video.html"] skip-if = [ "win11_2009", # win11 - 50/50 intermittent - "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", # win11 - 50/50 intermittent - "os == 'android' && os_version == '14'", # Bug 1873144 + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", # win11 - 50/50 intermittent + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1873144 ] #################### # Bugs surfaced during fx93 CTS update ["generated/test_conformance__textures__misc__texture-npot.html"] # application crashed [@ mozilla::gl::GLContext::AfterGLCall] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__texture-size-cube-maps.html"] # application crashed [@ mozilla::gl::GLContext::AfterGLCall] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__texture-size-limit.html"] -skip-if = ["os == 'linux' && asan"] +skip-if = [ + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", +] ["generated/test_conformance__textures__misc__texture-size.html"] # application crashed [@ mozilla::gl::GLContext::AfterGLCall] skip-if = [ - "os == 'android'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__textures__misc__texture-srgb-upload.html"] -skip-if = ["os == 'android' && processor == 'aarch64'"] # Bug 1796057 +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 +] ["generated/test_conformance__textures__misc__texture-sub-image-cube-maps.html"] # application crashed [@ mozilla::gl::GLContext::AfterGLCall] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__misc__texture-upload-size.html"] # application crashed [@ mozilla::WebGLTexture::TexSubImage] skip-if = [ - "os == 'win'", - "os == 'android'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", ] ["generated/test_conformance__textures__misc__texture-video-transparent.html"] # Assertion failure: [GFX1]: Unhandled srcImage->GetFormat(): 2 # mac opt seems to pass, though linux and win fail. -skip-if = ["true"] +skip-if = [ + "true", +] ["generated/test_conformance__textures__misc__video-rotation.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1725072 # E.g. "shouldBe 255,0,0 +/-10" -fail-if = ["true"] +fail-if = [ + "true", +] ["generated/test_conformance__textures__video__tex-2d-alpha-alpha-unsigned_byte.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-luminance-luminance-unsigned_byte.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_byte.html"] skip-if = [ - "os == 'android'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_short_5_6_5.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_byte.html"] skip-if = [ - "os == 'android'", - "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", ] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"] -skip-if = ["os == 'android'"] +skip-if = [ + "os == 'android' && os_version == '14' && arch == 'aarch64'", +] ["generated/test_conformance__uniforms__out-of-bounds-uniform-array-access.html"] # Crashes skip-if = [ - "os == 'android'", - "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", "os == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] ["generated/test_conformance__uniforms__uniform-default-values.html"] # Timeout on Windows, crash on Android/Linux. skip-if = [ - "os == 'android'", - "os == 'linux'", - "os == 'win'", + "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", ] ["generated/test_conformance__uniforms__uniform-values-per-program.html"] # Crashes on D3D11 debug. -skip-if = ["os == 'win'"] +skip-if = [ + "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", +]