tor-browser

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

commit a59f4a3ef71e320c22843bc9643d7669d28857cb
parent fad0cc09d3ec60d0c462cb259f89a48adcdc8b4c
Author: iulian moraru <imoraru@mozilla.com>
Date:   Sun, 30 Nov 2025 23:35:22 +0200

Revert "Bug 2002633 - update generated TOML manifests to use idiomatic conditions r=jmaher" for causing assertion failures on WebGLContext.h.

This reverts commit 45a2625bb47be10cd151e9e5224b291eec496c78.

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, 1228 insertions(+), 1964 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,9 +35,8 @@ EXTRA_SUPPORT_FILES = [ ACCEPTABLE_ERRATA_KEYS = set( [ "fail-if", - "prefs", "skip-if", - "tags", + "prefs", ] ) @@ -125,6 +124,7 @@ class TestEntry: self.path = path self.webgl1 = webgl1 self.webgl2 = webgl2 + return def AccumTests(pathStr, listFile, allowWebGL1, allowWebGL2, out_testList): @@ -194,6 +194,8 @@ def AccumTests(pathStr, listFile, allowWebGL1, allowWebGL2, out_testList): AccumTests(nextPathStr, nextListFile, webgl1, webgl2, out_testList) continue + return + ######################################################################## # Templates @@ -202,6 +204,7 @@ def AccumTests(pathStr, listFile, allowWebGL1, allowWebGL2, out_testList): def FillTemplate(inFilePath, templateDict, outFilePath): templateShell = ImportTemplate(inFilePath) OutputFilledTemplate(templateShell, templateDict, outFilePath) + return def ImportTemplate(inFilePath): @@ -214,6 +217,7 @@ def OutputFilledTemplate(templateShell, templateDict, outFilePath): with open(outFilePath, "w", newline="\n") as f: f.writelines(spanStrList) + return ############################## @@ -246,6 +250,8 @@ class TemplateShellSpan: self.isLiteralSpan = False self.span = self.span[2:-2] + return + def Fill(self, templateDict, indentLen): if self.isLiteralSpan: return self.span @@ -289,14 +295,15 @@ 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`. @@ -351,6 +358,7 @@ def WriteWrapper(entryPath, webgl2, templateShell, wrapperPathAccum): assert IsWrapperWebGL2(wrapperPath) wrapperPathAccum.append(wrapperPath) + return def WriteWrappers(testEntryList): @@ -442,6 +450,7 @@ 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,34 +5220,25 @@ 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_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'", + "os == 'mac'", ] ["generated/test_2_conformance2__attribs__gl-vertex-attrib-i-render.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance2__attribs__gl-vertexattribipointer-offsets.html"] subsuite = "webgl2-core" @@ -5287,9 +5278,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__buffers__get-buffer-sub-data.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance2__buffers__one-large-uniform-buffer.html"] subsuite = "webgl2-core" @@ -5315,8 +5304,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__context__context-attributes-depth-stencil-antialias-obeyed.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'android'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] tags = "os_integration" @@ -5344,7 +5334,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__ext-color-buffer-float.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug", ] ["generated/test_2_conformance2__extensions__ext-color-buffer-half-float.html"] @@ -5364,15 +5355,13 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__ext-texture-norm16.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", #Bug 1658801 -] +skip-if = ["os == 'android'"] #Bug 1658801 fail-if = [ - "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 == '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 == '15.30' && arch == 'aarch64'", + "os == 'linux'", ] ["generated/test_2_conformance2__extensions__nv-shader-noperspective-interpolation.html"] @@ -5389,45 +5378,31 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__ovr_multiview2.html"] subsuite = "webgl2-core" -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +fail-if = ["os == 'win'"] +skip-if = ["os == 'android'"] ["generated/test_2_conformance2__extensions__ovr_multiview2_depth.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_2_conformance2__extensions__ovr_multiview2_draw_buffers.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", -] +skip-if = ["os == 'android'"] +fail-if = ["os == 'win' && 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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_2_conformance2__extensions__ovr_multiview2_timer_query.html"] subsuite = "webgl2-core" @@ -5443,10 +5418,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__extensions__required-extensions.html"] subsuite = "webgl2-core" -fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] ["generated/test_2_conformance2__extensions__webgl-blend-func-extended.html"] subsuite = "webgl2-core" @@ -5457,8 +5429,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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__extensions__webgl-provoking-vertex.html"] @@ -5547,15 +5519,13 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__loops-with-side-effects.html"] subsuite = "webgl2-ext" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance2__glsl3__matrix-row-major-dynamic-indexing.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__glsl3__matrix-row-major.html"] @@ -5608,15 +5578,11 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__switch-case.html"] subsuite = "webgl2-ext" -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["generated/test_2_conformance2__glsl3__texture-bias.html"] subsuite = "webgl2-ext" -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["generated/test_2_conformance2__glsl3__texture-offset-non-constant-offset.html"] subsuite = "webgl2-ext" @@ -5629,9 +5595,7 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__tricky-loop-conditions.html"] subsuite = "webgl2-ext" -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["generated/test_2_conformance2__glsl3__uint-int-shift-bug.html"] subsuite = "webgl2-ext" @@ -5647,9 +5611,7 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance2__glsl3__uniform-location-length-limits.html"] subsuite = "webgl2-ext" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", -] +skip-if = ["os == 'win' && debug"] ["generated/test_2_conformance2__glsl3__uniform-struct-with-non-square-matrix.html"] subsuite = "webgl2-ext" @@ -5659,6 +5621,7 @@ 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" @@ -5669,15 +5632,16 @@ 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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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"] @@ -5686,9 +5650,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__misc__expando-loss-2.html"] subsuite = "webgl2-core" skip-if = [ - "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 == 'android'", + "os == 'linux'", + "verify && debug", ] ["generated/test_2_conformance2__misc__getextension-while-pbo-bound-stability.html"] @@ -5706,9 +5670,10 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__misc__uninitialized-test-2.html"] subsuite = "webgl2-core" skip-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", + "os == 'android' && os_version == '14'", ] ["generated/test_2_conformance2__misc__views-with-offsets.html"] @@ -5732,8 +5697,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__offscreencanvas__offscreencanvas-sync.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && opt", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64' && opt", ] @@ -5757,15 +5723,11 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__query__occlusion-query-scissor.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +skip-if = ["os == 'linux' && os_version == '24.04' && processor == '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" @@ -5775,18 +5737,14 @@ 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" @@ -5806,7 +5764,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__renderbuffers__multisample-draws-between-blits.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance2__renderbuffers__multisample-with-full-sample-counts.html"] @@ -5823,9 +5782,7 @@ 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" @@ -5836,16 +5793,19 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__blitframebuffer-filter-srgb.html"] subsuite = "webgl2-core" fail-if = [ - "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 == '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 == '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 == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance2__rendering__blitframebuffer-outside-readbuffer.html"] @@ -5856,9 +5816,7 @@ 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" @@ -5895,10 +5853,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__clipping-wide-points.html"] subsuite = "webgl2-core" -fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] ["generated/test_2_conformance2__rendering__depth-stencil-feedback-loop.html"] subsuite = "webgl2-core" @@ -5912,8 +5867,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__draw-buffers-sparse-output-locations.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'win'", + "os == 'android' && os_version == '14'", ] ["generated/test_2_conformance2__rendering__draw-buffers.html"] @@ -5933,22 +5888,19 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__framebuffer-mismatched-attachment-targets.html"] subsuite = "webgl2-core" -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["generated/test_2_conformance2__rendering__framebuffer-render-to-layer-angle-issue.html"] subsuite = "webgl2-core" -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["generated/test_2_conformance2__rendering__framebuffer-render-to-layer.html"] subsuite = "webgl2-core" fail-if = [ - "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 == '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 == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] @@ -5958,18 +5910,16 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__framebuffer-texture-level1.html"] subsuite = "webgl2-core" fail-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] +skip-if = ["os == 'linux'"] ["generated/test_2_conformance2__rendering__framebuffer-to-texture.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance2__rendering__framebuffer-unsupported.html"] @@ -5990,13 +5940,15 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__rendering__line-rendering-quality.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance2__rendering__multisampling-depth-resolve.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance2__rendering__multisampling-fragment-evaluation.html"] @@ -6016,15 +5968,11 @@ 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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_2_conformance2__rendering__vertex-id-large-count.html"] subsuite = "webgl2-core" @@ -6047,7 +5995,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__state__gl-get-calls.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance2__state__gl-getstring.html"] @@ -6055,13 +6004,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__state__gl-object-get-calls.html"] subsuite = "webgl2-core" -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'", -] +skip-if = ["true"] +fail-if = ["os == 'linux'"] ["generated/test_2_conformance2__sync__sync-webgl-specific.html"] subsuite = "webgl2-core" @@ -6107,9 +6051,7 @@ 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" @@ -6212,9 +6154,7 @@ 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" @@ -6317,9 +6257,7 @@ 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" @@ -6384,238 +6322,236 @@ 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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-2d-r11f_g11f_b10f-rgb-float.html"] @@ -6659,9 +6595,7 @@ 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" @@ -6726,238 +6660,236 @@ 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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image_bitmap_from_blob__tex-2d-r11f_g11f_b10f-rgb-float.html"] @@ -7001,9 +6933,7 @@ 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" @@ -7106,9 +7036,7 @@ 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" @@ -7211,9 +7139,7 @@ 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" @@ -7316,9 +7242,7 @@ 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" @@ -7421,9 +7345,7 @@ 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" @@ -7526,9 +7448,7 @@ 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" @@ -7631,9 +7551,7 @@ 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" @@ -7736,9 +7654,7 @@ 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" @@ -7841,9 +7757,7 @@ 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" @@ -7946,9 +7860,7 @@ 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" @@ -8051,9 +7963,7 @@ 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" @@ -8156,9 +8066,7 @@ 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" @@ -8261,9 +8169,7 @@ 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" @@ -8366,9 +8272,7 @@ 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" @@ -8450,10 +8354,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__copy-texture-cube-map-bug.html"] subsuite = "webgl2-core" -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__textures__misc__copy-texture-image-luma-format.html"] subsuite = "webgl2-core" @@ -8461,10 +8362,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__copy-texture-image-same-texture.html"] subsuite = "webgl2-core" skip-if = [ - "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'", + "os == 'linux'", + "os == 'win'", + "os == 'android' && os_version == '14'", ] ["generated/test_2_conformance2__textures__misc__copy-texture-image-webgl-specific.html"] @@ -8482,16 +8382,15 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__immutable-tex-render-feedback.html"] subsuite = "webgl2-core" fail-if = [ - "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 == '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 == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] skip-if = [ - "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", + "os == 'linux' && debug", + "os == 'android' && os_version == '14' && debug", ] ["generated/test_2_conformance2__textures__misc__integer-cubemap-specification-order-bug.html"] @@ -8508,14 +8407,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 = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "win11_2009", + "os == 'win' && os_version == '11.26100' && processor == 'x86'", + "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-3d-size-limit.html"] @@ -8524,16 +8423,15 @@ 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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '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" @@ -8541,9 +8439,10 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__tex-image-with-bad-args-from-dom-elements.html"] subsuite = "webgl2-core" skip-if = [ - "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'", + "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 ] ["generated/test_2_conformance2__textures__misc__tex-image-with-bad-args.html"] @@ -8555,17 +8454,20 @@ subsuite = "webgl2-core" ["generated/test_2_conformance2__textures__misc__tex-input-validation.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android'", + "os == 'win'", ] ["generated/test_2_conformance2__textures__misc__tex-mipmap-levels.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "win11_2009", + "os == 'win' && os_version == '11.26100' && processor == 'x86'", + "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-new-formats.html"] @@ -8574,8 +8476,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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-storage-2d.html"] @@ -8596,25 +8498,24 @@ 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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64' && debug", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64' && debug", ] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64'", ] @@ -8665,9 +8566,7 @@ 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" @@ -8770,9 +8669,7 @@ 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" @@ -8875,9 +8772,7 @@ 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" @@ -8942,238 +8837,236 @@ 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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__webgl_canvas__tex-2d-r11f_g11f_b10f-rgb-float.html"] @@ -9217,9 +9110,7 @@ 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" @@ -9322,9 +9213,7 @@ 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" @@ -9403,16 +9292,13 @@ 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 == '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'", + "os == 'linux'", + "os == 'android' && debug", ] ["generated/test_2_conformance2__transform_feedback__two-unreferenced-varyings.html"] @@ -9453,75 +9339,51 @@ 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" @@ -9612,9 +9474,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__canvas__canvas-test.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'win', && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance__canvas__canvas-zero-size.html"] subsuite = "webgl2-core" @@ -9654,9 +9514,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__canvas__to-data-url-test.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance__canvas__viewport-unchanged-upon-resize.html"] subsuite = "webgl2-core" @@ -9673,7 +9531,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance__context__context-creation-and-destruction.html"] @@ -9765,9 +9624,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__extensions__webgl-compressed-texture-astc.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", -] +skip-if = ["os == 'android' && debug"] ["generated/test_2_conformance__extensions__webgl-compressed-texture-etc.html"] subsuite = "webgl2-core" @@ -9909,6 +9766,7 @@ 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" @@ -9943,9 +9801,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__glsl__bugs__vector-matrix-constructor-scalarization.html"] subsuite = "webgl2-ext" fail-if = [ - "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'", + "os == 'android' && opt", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance__glsl__bugs__vector-scalar-arithmetic-inside-loop-complex.html"] @@ -9987,11 +9845,11 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"] subsuite = "webgl2-ext" skip-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", + "os == 'linux'", + "os == 'android'", ] ["generated/test_2_conformance__glsl__constructors__glsl-construct-vec2.html"] @@ -10336,8 +10194,9 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__glsl__misc__fragcolor-fragdata-invariant.html"] subsuite = "webgl2-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64'", ] # [unexpected fragment shader compile status] (expected: true) Declaring both gl_FragColor and gl_FragData invariant should succeed. @@ -10743,7 +10602,8 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__limits__gl-line-width.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_2_conformance__limits__gl-max-texture-dimensions.html"] @@ -10761,8 +10621,9 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__misc__bad-arguments-test.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", ] ["generated/test_2_conformance__misc__boolean-argument-conversion.html"] @@ -10801,25 +10662,21 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__misc__type-conversion-test.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && 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 == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'win' && debug", + "os == 'android' && debug", ] +fail-if = ["os == 'win' && !debug"] ["generated/test_2_conformance__misc__webgl-specific-stencil-settings.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance__misc__webgl-specific.html"] subsuite = "webgl2-core" @@ -10919,9 +10776,7 @@ 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" @@ -10931,9 +10786,7 @@ 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" @@ -10946,9 +10799,7 @@ 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" @@ -11132,9 +10983,7 @@ 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' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance__ogles__GL__ceil__ceil_001_to_006.html"] subsuite = "webgl2-ext" @@ -11384,9 +11233,7 @@ subsuite = "webgl2-ext" ["generated/test_2_conformance__ogles__GL__struct__struct_025_to_032.html"] subsuite = "webgl2-ext" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance__ogles__GL__struct__struct_033_to_040.html"] subsuite = "webgl2-ext" @@ -11582,9 +11429,7 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__rendering__gl-scissor-test.html"] subsuite = "webgl2-core" -fail-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] ["generated/test_2_conformance__rendering__gl-viewport-test.html"] subsuite = "webgl2-core" @@ -11595,14 +11440,13 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__rendering__line-rendering-quality.html"] subsuite = "webgl2-core" fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["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" @@ -11636,21 +11480,17 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__rendering__preservedrawingbuffer-leak.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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' && arch == 'x86_64'", -] +fail-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android'", + "os == 'win'", ] ["generated/test_2_conformance__rendering__scissor-rect-repeated-rendering.html"] @@ -11661,9 +11501,7 @@ 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" @@ -11932,7 +11770,8 @@ 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' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_2_conformance__textures__misc__copy-tex-image-and-sub-image-2d.html"] @@ -11953,7 +11792,8 @@ 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' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_2_conformance__textures__misc__default-texture.html"] @@ -11976,15 +11816,11 @@ 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" @@ -12016,8 +11852,9 @@ 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_version == '11.26100' && arch == 'x86_64'", - "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'win'", + "os == 'android' && debug", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && !debug", ] ["generated/test_2_conformance__textures__misc__texparameter-test.html"] @@ -12047,7 +11884,8 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__texture-corner-case-videos.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'android'", + "os == 'linux' && os_version == '18.04'", ] ["generated/test_2_conformance__textures__misc__texture-cube-as-fbo-attachment.html"] @@ -12064,28 +11902,22 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__texture-size-cube-maps.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance__textures__misc__texture-size-limit.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", -] +skip-if = ["os == 'linux' && asan"] ["generated/test_2_conformance__textures__misc__texture-size.html"] subsuite = "webgl2-core" skip-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'linux' && asan", + "os == 'win'", ] ["generated/test_2_conformance__textures__misc__texture-srgb-upload.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 -] +skip-if = ["os == 'android' && processor == 'aarch64'"] # Bug 1796057 ["generated/test_2_conformance__textures__misc__texture-sub-image-cube-maps.html"] subsuite = "webgl2-core" @@ -12098,15 +11930,11 @@ subsuite = "webgl2-core" ["generated/test_2_conformance__textures__misc__texture-upload-size.html"] subsuite = "webgl2-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android' && processor == '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" @@ -12116,9 +11944,7 @@ 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" @@ -12288,8 +12114,9 @@ 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"] @@ -14685,15 +14512,11 @@ subsuite = "webgl2-deqp" ["generated/test_conformance__attribs__gl-bindAttribLocation-aliasing.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__attribs__gl-bindAttribLocation-matrix.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__attribs__gl-bindAttribLocation-nonexistent-attribute.html"] subsuite = "webgl1-core" @@ -14793,14 +14616,13 @@ subsuite = "webgl1-core" ["generated/test_conformance__canvas__drawingbuffer-hd-dpi-test.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__canvas__drawingbuffer-static-canvas-test.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_conformance__canvas__drawingbuffer-test.html"] @@ -14814,9 +14636,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__canvas__rapid-resizing.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__canvas__render-after-resize-test.html"] subsuite = "webgl1-core" @@ -14848,13 +14668,13 @@ subsuite = "webgl1-core" ["generated/test_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"] subsuite = "webgl1-core" skip-if = [ - "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'", + "os == 'linux'", + "os == 'android'", ] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug && !swgl", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug && !swgl", + "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", ] ["generated/test_conformance__context__context-creation-and-destruction.html"] @@ -14862,15 +14682,11 @@ subsuite = "webgl1-core" ["generated/test_conformance__context__context-creation.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-eviction-with-garbage-collection.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-hidden-alpha.html"] subsuite = "webgl1-core" @@ -14886,21 +14702,15 @@ subsuite = "webgl1-core" ["generated/test_conformance__context__context-release-upon-reload.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-release-with-workers.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-size-change.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__context__context-type-test.html"] subsuite = "webgl1-core" @@ -14928,9 +14738,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__extensions__angle-instanced-arrays.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", -] +skip-if = ["os == 'mac' && os_version == '10.15'"] ["generated/test_conformance__extensions__ext-blend-minmax.html"] subsuite = "webgl1-core" @@ -15003,9 +14811,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__extensions__oes-texture-float-with-video.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__extensions__oes-texture-float.html"] subsuite = "webgl1-core" @@ -15024,9 +14830,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__extensions__oes-texture-half-float-with-video.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__extensions__oes-texture-half-float.html"] subsuite = "webgl1-core" @@ -15069,9 +14873,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__extensions__webgl-depth-texture.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android' && os_version == '14'"] ["generated/test_conformance__extensions__webgl-draw-buffers-broadcast-return.html"] subsuite = "webgl1-core" @@ -15105,9 +14907,7 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__array-of-struct-with-int-first-position.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__assign-to-swizzled-twice-in-function.html"] subsuite = "webgl1-ext" @@ -15120,30 +14920,22 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__compare-loop-index-to-uniform.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__complex-glsl-does-not-crash.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__conditional-discard-optimization.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__conditional-texture-fetch.html"] subsuite = "webgl1-ext" @@ -15159,21 +14951,15 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__floored-division-accuracy.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__fragcoord-linking-bug.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__gl-fragcoord-multisampling-bug.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__global-invariant-does-not-leak-across-shaders.html"] subsuite = "webgl1-ext" @@ -15192,60 +14978,44 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__logic-inside-block-without-braces.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__long-expressions-should-not-crash.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__multiplication-assignment.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__nested-functions-should-not-crash.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__nested-loops-with-break-and-continue.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__qualcomm-loop-with-continue-crash.html"] subsuite = "webgl1-ext" @@ -15255,29 +15025,25 @@ 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 == '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 == 'linux'", + "os == 'android'", ] ["generated/test_conformance__glsl__bugs__sequence-operator-evaluation-order.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__struct-with-single-member-constructor.html"] subsuite = "webgl1-ext" @@ -15285,9 +15051,8 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__temp-expressions-should-not-crash.html"] subsuite = "webgl1-ext" skip-if = [ - "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 == 'android'", + "os == 'linux'", ] ["generated/test_conformance__glsl__bugs__unary-minus-operator-float-bug.html"] @@ -15298,9 +15063,7 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__bugs__uniforms-should-not-lose-values.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__varying-arrays-should-not-be-reversed.html"] subsuite = "webgl1-ext" @@ -15308,8 +15071,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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_conformance__glsl__bugs__vector-scalar-arithmetic-inside-loop-complex.html"] @@ -15321,58 +15084,52 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__constructors__glsl-construct-bvec2.html"] subsuite = "webgl1-ext" skip-if = [ - "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 == 'linux'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec3.html"] subsuite = "webgl1-ext" skip-if = [ - "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 == 'linux'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec4.html"] subsuite = "webgl1-ext" skip-if = [ - "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 == 'linux'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec2.html"] subsuite = "webgl1-ext" -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_conformance__glsl__constructors__glsl-construct-ivec3.html"] subsuite = "webgl1-ext" skip-if = [ - "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 == 'linux'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec4.html"] subsuite = "webgl1-ext" skip-if = [ - "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 == 'linux'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-mat2.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", -] +skip-if = ["os == 'linux' && asan"] ["generated/test_conformance__glsl__constructors__glsl-construct-mat3.html"] subsuite = "webgl1-ext" @@ -15382,19 +15139,16 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__constructors__glsl-construct-vec-mat-corner-cases.html"] subsuite = "webgl1-ext" -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_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"] subsuite = "webgl1-ext" skip-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", + "os == 'linux'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-vec2.html"] @@ -15402,17 +15156,11 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__constructors__glsl-construct-vec3.html"] subsuite = "webgl1-ext" -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_conformance__glsl__constructors__glsl-construct-vec4.html"] subsuite = "webgl1-ext" -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_conformance__glsl__functions__glsl-function-abs.html"] subsuite = "webgl1-ext" @@ -15428,10 +15176,7 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__functions__glsl-function-atan.html"] subsuite = "webgl1-ext" -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_conformance__glsl__functions__glsl-function-ceil.html"] subsuite = "webgl1-ext" @@ -15513,9 +15258,7 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__functions__glsl-function-step-gentype.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__functions__glsl-function.html"] subsuite = "webgl1-ext" @@ -15757,8 +15500,9 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__misc__fragcolor-fragdata-invariant.html"] subsuite = "webgl1-ext" fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64'", ] @@ -15807,9 +15551,8 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__misc__shader-uniform-packing-restrictions.html"] subsuite = "webgl1-ext" skip-if = [ - "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", + "os == 'android'", + "os == 'linux' && debug", ] ["generated/test_conformance__glsl__misc__shader-varying-packing-restrictions.html"] @@ -16153,24 +15896,18 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__samplers__glsl-function-texture2dproj.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__samplers__glsl-function-texture2dprojlod.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__variables__gl-fragdata-and-fragcolor.html"] subsuite = "webgl1-ext" @@ -16183,9 +15920,7 @@ subsuite = "webgl1-ext" ["generated/test_conformance__glsl__variables__glsl-built-ins.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__limits__gl-line-width.html"] subsuite = "webgl1-core" @@ -16198,10 +15933,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__limits__gl-min-textures.html"] subsuite = "webgl1-core" -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_conformance__limits__gl-min-uniforms.html"] subsuite = "webgl1-core" @@ -16209,18 +15941,16 @@ subsuite = "webgl1-core" ["generated/test_conformance__misc__bad-arguments-test.html"] subsuite = "webgl1-core" skip-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", + "os == 'linux'", + "os == 'android'", ] ["generated/test_conformance__misc__boolean-argument-conversion.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__misc__delayed-drawing.html"] subsuite = "webgl1-core" @@ -16254,33 +15984,23 @@ subsuite = "webgl1-core" ["generated/test_conformance__misc__shader-precision-format.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__misc__type-conversion-test.html"] subsuite = "webgl1-core" -fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] skip-if = [ - "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 == 'android'", + "os == 'linux'", ] ["generated/test_conformance__misc__uninitialized-test.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__misc__webgl-specific-stencil-settings.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__misc__webgl-specific.html"] subsuite = "webgl1-core" @@ -16314,9 +16034,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__more__conformance__quickCheckAPI-D_G.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__more__conformance__quickCheckAPI-G_I.html"] subsuite = "webgl1-core" @@ -16383,9 +16101,7 @@ 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" @@ -16395,9 +16111,7 @@ 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" @@ -16410,9 +16124,7 @@ 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" @@ -16494,9 +16206,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__ogles__GL__abs__abs_001_to_006.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", -] +skip-if = ["os == 'android' && debug"] ["generated/test_conformance__ogles__GL__acos__acos_001_to_006.html"] subsuite = "webgl1-ext" @@ -16599,9 +16309,7 @@ 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' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__ogles__GL__ceil__ceil_001_to_006.html"] subsuite = "webgl1-ext" @@ -16749,9 +16457,7 @@ subsuite = "webgl1-ext" ["generated/test_conformance__ogles__GL__mat3__mat3_001_to_006.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__ogles__GL__mat__mat_001_to_008.html"] subsuite = "webgl1-ext" @@ -16791,10 +16497,7 @@ subsuite = "webgl1-ext" ["generated/test_conformance__ogles__GL__notEqual__notEqual_001_to_008.html"] subsuite = "webgl1-ext" -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_conformance__ogles__GL__notEqual__notEqual_009_to_012.html"] subsuite = "webgl1-ext" @@ -16834,10 +16537,7 @@ subsuite = "webgl1-ext" ["generated/test_conformance__ogles__GL__sign__sign_001_to_006.html"] subsuite = "webgl1-ext" -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_conformance__ogles__GL__sin__sin_001_to_006.html"] subsuite = "webgl1-ext" @@ -16977,9 +16677,8 @@ subsuite = "webgl1-core" ["generated/test_conformance__reading__read-pixels-test.html"] subsuite = "webgl1-core" skip-if = [ - "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 == 'android'", + "os == 'linux'", ] ["generated/test_conformance__renderbuffers__depth-renderbuffer-initialization.html"] @@ -16990,9 +16689,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__renderbuffers__framebuffer-object-attachment.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__renderbuffers__framebuffer-state-restoration.html"] subsuite = "webgl1-core" @@ -17023,10 +16720,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__clipping-wide-points.html"] subsuite = "webgl1-core" -fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] ["generated/test_conformance__rendering__color-mask-preserved-during-implicit-clears.html"] subsuite = "webgl1-core" @@ -17054,18 +16748,14 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__framebuffer-switch.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__rendering__gl-clear.html"] subsuite = "webgl1-core" @@ -17084,11 +16774,9 @@ 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' && arch == 'x86_64' && display == 'x11'", + "os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'", # Bug TBD ] ["generated/test_conformance__rendering__gl-viewport-test.html"] @@ -17099,12 +16787,13 @@ 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"] @@ -17113,9 +16802,10 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__multisample-corruption.html"] subsuite = "webgl1-core" skip-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android'", + "os == 'win'", ] ["generated/test_conformance__rendering__negative-one-index.html"] @@ -17144,9 +16834,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__preservedrawingbuffer-leak.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__rendering__rendering-sampling-feedback-loop.html"] subsuite = "webgl1-core" @@ -17154,12 +16842,12 @@ subsuite = "webgl1-core" ["generated/test_conformance__rendering__rendering-stencil-large-viewport.html"] subsuite = "webgl1-core" fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", ] skip-if = [ - "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'", + "os == 'android'", + "os == 'win'", + "display == 'wayland'", ] ["generated/test_conformance__rendering__scissor-rect-repeated-rendering.html"] @@ -17170,9 +16858,7 @@ 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" @@ -17200,9 +16886,7 @@ 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" @@ -17401,51 +17085,35 @@ 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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-luminance-luminance-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgb-rgb-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_data__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl1-ext" @@ -17498,7 +17166,8 @@ 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' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_conformance__textures__misc__default-texture.html"] @@ -17518,33 +17187,25 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__gl-teximage.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '11.26100' && arch == 'x86_64' && debug", -] +skip-if = ["os == 'win' && debug"] ["generated/test_conformance__textures__misc__tex-image-and-uniform-binding-bugs.html"] subsuite = "webgl1-core" @@ -17554,18 +17215,14 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__tex-image-webgl.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__tex-input-validation.html"] subsuite = "webgl1-core" @@ -17579,8 +17236,8 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__tex-video-using-tex-unit-non-zero.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'win'", + "os == 'android' && debug", ] ["generated/test_conformance__textures__misc__texparameter-test.html"] @@ -17610,7 +17267,8 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__texture-corner-case-videos.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'android'", + "os == 'linux' && os_version == '18.04'", ] ["generated/test_conformance__textures__misc__texture-cube-as-fbo-attachment.html"] @@ -17630,54 +17288,42 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__texture-mips.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && arch == 'x86_64'", # win11 - 50/50 intermittent - "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1873144 + "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", # win11 - 50/50 intermittent + "os == 'android' && os_version == '14'", # Bug 1873144 ] ["generated/test_conformance__textures__misc__texture-npot.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__texture-size-cube-maps.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__texture-size-limit.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", -] +skip-if = ["os == 'linux' && asan"] ["generated/test_conformance__textures__misc__texture-size.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android'", + "os == 'win'", ] ["generated/test_conformance__textures__misc__texture-srgb-upload.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 -] +skip-if = ["os == 'android' && processor == 'aarch64'"] # Bug 1796057 ["generated/test_conformance__textures__misc__texture-sub-image-cube-maps.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__texture-transparent-pixels-initialized.html"] subsuite = "webgl1-core" @@ -17688,15 +17334,13 @@ subsuite = "webgl1-core" ["generated/test_conformance__textures__misc__texture-upload-size.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", - "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'win'", + "os == 'android'", ] ["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" @@ -17706,9 +17350,7 @@ 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" @@ -17736,53 +17378,43 @@ subsuite = "webgl1-ext" ["generated/test_conformance__textures__video__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-luminance-luminance-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_byte.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'android'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR ] ["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_short_5_6_5.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_byte.html"] subsuite = "webgl1-ext" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'android'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR ] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"] subsuite = "webgl1-ext" -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__webgl_canvas__tex-2d-alpha-alpha-unsigned_byte.html"] subsuite = "webgl1-ext" @@ -17904,17 +17536,17 @@ subsuite = "webgl1-core" ["generated/test_conformance__uniforms__out-of-bounds-uniform-array-access.html"] subsuite = "webgl1-core" skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'android'", + "os == 'mac' && os_version == '11.20' && 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_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'", + "os == 'android'", + "os == 'linux'", + "os == 'win'", ] ["generated/test_conformance__uniforms__uniform-location.html"] @@ -17925,9 +17557,7 @@ subsuite = "webgl1-core" ["generated/test_conformance__uniforms__uniform-values-per-program.html"] subsuite = "webgl1-core" -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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,7 +9,6 @@ # 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 @@ -21,73 +20,58 @@ 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_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'", + "os == 'mac'", ] ["generated/test_2_conformance2__attribs__gl-vertex-attrib-i-render.html"] # timed out crash -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance2__attribs__gl-vertex-attrib.html"] # random timed out -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance2__buffers__get-buffer-sub-data.html"] -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance2__context__context-attributes-depth-stencil-antialias-obeyed.html"] fail-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'android'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] tags = "os_integration" ["generated/test_2_conformance2__extensions__ext-color-buffer-float.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug", ] ["generated/test_2_conformance2__extensions__ext-texture-norm16.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", #Bug 1658801 -] +skip-if = ["os == 'android'"] #Bug 1658801 fail-if = [ - "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 == '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 == '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' && os_version == '11.26100' && arch == 'x86_64'", -] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +fail-if = ["os == 'win'"] +skip-if = ["os == 'android'"] #[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 @@ -146,14 +130,10 @@ skip-if = [ #[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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_2_conformance2__extensions__ovr_multiview2_draw_buffers.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1810021 # # Currently getting failures like the following: @@ -172,46 +152,35 @@ skip-if = [ # > 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' && os_version == '11.26100' && arch == 'x86_64' && debug", -] +fail-if = ["os == 'win' && debug"] ["generated/test_2_conformance2__extensions__ovr_multiview2_instanced_draw.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_2_conformance2__extensions__ovr_multiview2_single_view_operations.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] ["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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__glsl3__loops-with-side-effects.html"] # application crashed [@ nvoglv32.dll + 0x999512] -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance2__glsl3__matrix-row-major-dynamic-indexing.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ######################################################################## @@ -221,67 +190,62 @@ fail-if = [ ["generated/test_2_conformance2__glsl3__switch-case.html"] # https://bugzilla.mozilla.org/show_bug.cgi?id=1725442 -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["generated/test_2_conformance2__glsl3__texture-bias.html"] # should be: 3,3,3,3 # should be: 13,13,13,13 -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] #################### # Bugs surfaced during fx106 CTS update ["generated/test_2_conformance2__glsl3__tricky-loop-conditions.html"] -fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["generated/test_2_conformance2__glsl3__uniform-location-length-limits.html"] # time out crash -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && debug", -] +skip-if = ["os == 'win' && 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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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_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 == 'android'", + "os == 'linux'", ] ["generated/test_2_conformance2__misc__uninitialized-test-2.html"] skip-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", + "os == 'android' && os_version == '14'", ] ["generated/test_2_conformance2__offscreencanvas__offscreencanvas-sync.html"] # Timeout skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && opt", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64' && opt", ] @@ -289,17 +253,13 @@ 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' && arch == 'x86_64' && display == 'x11'", -] +skip-if = ["os == 'linux' && os_version == '24.04' && processor == '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"] @@ -307,20 +267,17 @@ skip-if = [ # 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 == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance2__renderbuffers__multisampled-depth-renderbuffer-initialization.html"] @@ -333,42 +290,38 @@ 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 == '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 == '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 == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] ["generated/test_2_conformance2__rendering__blitframebuffer-multisampled-readbuffer.html"] fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["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' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] ["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 == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'win'", + "os == 'android' && os_version == '14'", ] # - @@ -377,23 +330,20 @@ 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' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["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' && os_version == '11.26100' && arch == 'x86_64'", -] +fail-if = ["os == 'win'"] ["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_version == '14' && arch == 'aarch64'", - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == 'mac' && os_version == '15.30' && arch == 'aarch64'", ] @@ -403,43 +353,39 @@ fail-if = [ ["generated/test_2_conformance2__rendering__framebuffer-texture-level1.html"] fail-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] +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 == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance2__rendering__line-rendering-quality.html"] fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] # 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 == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] # [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 @@ -498,524 +444,477 @@ skip-if = [ ["generated/test_2_conformance2__state__gl-get-calls.html"] fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["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' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] # - # 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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r16f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r32f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg16f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg32f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb32f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba16f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba32f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r16f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r16f-red-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r32f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r8-red-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-r8ui-red_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg16f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg16f-rg-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg32f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg8-rg-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rg8ui-rg_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb16f-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb32f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb565-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb5_a1-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb9_e5-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgb9_e5-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba32f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba4-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-srgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__image__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +skip-if = ["os == 'linux'"] # [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] @@ -1029,10 +928,9 @@ skip-if = [ ["generated/test_2_conformance2__textures__misc__copy-texture-image-same-texture.html"] skip-if = [ - "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'", + "os == 'linux'", + "os == 'win'", + "os == 'android' && os_version == '14'", ] ["generated/test_2_conformance2__textures__misc__generate-mipmap-with-large-base-level.html"] @@ -1041,23 +939,20 @@ 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_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 == '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 == '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 == '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", + "os == 'linux' && debug", + "os == 'android' && os_version == '14' && debug", ] ["generated/test_2_conformance2__textures__misc__origin-clean-conformance-offscreencanvas.html"] -skip-if = [ - "true", -] +skip-if = ["true"] #################### @@ -1065,427 +960,388 @@ skip-if = [ ["generated/test_2_conformance2__textures__misc__tex-3d-mipmap-levels-intel-bug.html"] fail-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "win11_2009", + "os == 'win' && os_version == '11.26100' && processor == 'x86'", + "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-base-level-bug.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '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 == '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'", + "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 ] ["generated/test_2_conformance2__textures__misc__tex-input-validation.html"] skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android'", + "os == 'win'", ] ["generated/test_2_conformance2__textures__misc__tex-mipmap-levels.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "win11_2009", + "os == 'win' && os_version == '11.26100' && processor == 'x86'", + "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__misc__tex-srgb-mipmap.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64' && debug", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64' && debug", ] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r16f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r16f-red-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r32f-red-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r8-red-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-r8ui-red_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg16f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg16f-rg-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg32f-rg-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg8-rg-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rg8ui-rg_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb16f-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb32f-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb565-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb5_a1-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb9_e5-rgb-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgb9_e5-rgb-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba16f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba16f-rgba-half_float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba32f-rgba-float.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba4-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-srgb8-rgb-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance2__textures__video__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == '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 == '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'", + "os == 'linux'", + "os == 'android' && debug", ] ["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', && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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 == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] ["generated/test_2_conformance__extensions__webgl-compressed-texture-astc.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", -] +skip-if = ["os == 'android' && 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' && os_version == '14' && arch == 'aarch64' && opt", - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'android' && opt", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_2_conformance__glsl__constructors__glsl-construct-bvec2.html"] @@ -1505,11 +1361,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 == '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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", + "os == 'linux'", + "os == 'android'", ] ["generated/test_2_conformance__glsl__constructors__glsl-construct-vec2.html"] @@ -1520,8 +1376,9 @@ skip-if = [ ["generated/test_2_conformance__glsl__misc__fragcolor-fragdata-invariant.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64'", ] # [unexpected fragment shader compile status] (expected: true) Declaring both gl_FragColor and gl_FragData invariant should succeed. @@ -1533,164 +1390,139 @@ fail-if = [ ["generated/test_2_conformance__limits__gl-line-width.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["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' && arch == 'x86_64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", ] ["generated/test_2_conformance__misc__type-conversion-test.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && 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 == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'win' && debug", + "os == 'android' && 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' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance__ogles__GL__struct__struct_025_to_032.html"] # application crashed [@ nvoglv32.dll + 0x90b445] -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] ["generated/test_2_conformance__rendering__line-rendering-quality.html"] fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", + "os == 'linux' && os_version == '18.04'", + "os == 'linux' && os_version == '22.04'", ] # 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' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_2_conformance__rendering__rendering-stencil-large-viewport.html"] # same as webgl1 test -fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", -] +fail-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android'", + "os == 'win'", ] ["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' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_2_conformance__textures__misc__cube-map-uploads-out-of-order.html"] skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["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_version == '11.26100' && arch == 'x86_64'", - "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", + "os == 'win'", + "os == 'android' && debug", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64' && !debug", ] ["generated/test_2_conformance__textures__misc__texture-corner-case-videos.html"] # Timeout. Bug 1599937 skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'android'", + "os == 'linux' && os_version == '18.04'", ] ["generated/test_2_conformance__textures__misc__texture-size-cube-maps.html"] # Random failures -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", -] +skip-if = ["os == 'linux' && asan"] ######################################################################## # Global @@ -1699,116 +1531,90 @@ skip-if = [ # 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' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'linux' && asan", + "os == 'win'", ] ["generated/test_2_conformance__textures__misc__texture-srgb-upload.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 -] +skip-if = ["os == 'android' && processor == '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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android' && processor == '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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__attribs__gl-bindAttribLocation-matrix.html"] # OOM crash -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__canvas__drawingbuffer-hd-dpi-test.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__canvas__drawingbuffer-static-canvas-test.html"] # Intermittent crash on OSX. skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_conformance__canvas__rapid-resizing.html"] # Frequent orange crash. -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"] # Asserts on linux debug. Crashes on Android. skip-if = [ - "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'", + "os == 'linux'", + "os == 'android'", ] # should be 0,0,0,255 fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64' && debug && !swgl", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug && !swgl", + "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", ] ["generated/test_conformance__context__context-creation.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-eviction-with-garbage-collection.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-release-upon-reload.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-release-with-workers.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__context__context-size-change.html"] -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__extensions__angle-instanced-arrays.html"] -skip-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", -] +skip-if = ["os == 'mac' && os_version == '10.15'"] ["generated/test_conformance__extensions__ext-sRGB.html"] @@ -1816,272 +1622,208 @@ skip-if = [ ["generated/test_conformance__extensions__oes-texture-float-with-video.html"] # Timeout -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && arch == 'aarch64'", -] +skip-if = ["os == 'android' && os_version == '14'"] ["generated/test_conformance__glsl__bugs__array-of-struct-with-int-first-position.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__compare-loop-index-to-uniform.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__complex-glsl-does-not-crash.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__conditional-discard-in-loop.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__conditional-discard-optimization.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__floored-division-accuracy.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__fragcoord-linking-bug.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__gl-fragcoord-multisampling-bug.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__logic-inside-block-without-braces.html"] # application crashed [@ MustSkipMarking<JSObject*>] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__long-expressions-should-not-crash.html"] # Android: Crashes sometimes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__modulo-arithmetic-accuracy.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__multiplication-assignment.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__nested-functions-should-not-crash.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__nested-loops-with-break-and-continue.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__pow-of-small-constant-in-user-defined-function.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__qualcomm-crash.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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 == '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 == 'linux'", + "os == 'android'", ] ["generated/test_conformance__glsl__bugs__sequence-operator-evaluation-order.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__bugs__struct-constructor-highp-bug.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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_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 == 'android'", + "os == 'linux'", ] ["generated/test_conformance__glsl__bugs__uniforms-should-not-lose-values.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '14.70' && processor == 'x86_64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec2.html"] # mozalloc_abort in libglsl.so skip-if = [ - "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 == 'linux'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec3.html"] # Crashes from libglsl.so # application crashed [@ jemalloc_crash] on Android skip-if = [ - "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 == 'linux'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-bvec4.html"] # application crashed [@ ParseOperand::GetLogicalSize() const + 0x4] skip-if = [ - "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 == 'linux'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec2.html"] # Crashes from libglsl.so -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_conformance__glsl__constructors__glsl-construct-ivec3.html"] # application crashed [@ ParseOperand::GetLogicalSize() const + 0x4] # application crashed [@ jemalloc_crash] on Android skip-if = [ - "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 == 'linux'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-ivec4.html"] # Assume crashes like ivec3 skip-if = [ - "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 == 'linux'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-mat2.html"] # Crashes on Linux ASAN -skip-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", -] +skip-if = ["os == 'linux' && asan"] ["generated/test_conformance__glsl__constructors__glsl-construct-vec-mat-corner-cases.html"] # mozalloc_abort in libglsl.so -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_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"] # skip this test because finish() was called multiple times skip-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", + "os == 'linux'", + "os == 'android'", ] ["generated/test_conformance__glsl__constructors__glsl-construct-vec3.html"] # Crashes -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_conformance__glsl__constructors__glsl-construct-vec4.html"] # Inferred crash from vec3 above. -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_conformance__glsl__functions__glsl-function-atan.html"] # Crashes -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_conformance__glsl__functions__glsl-function-step-gentype.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && arch == 'x86_64'", - "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", + "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 == '15.30' && arch == 'aarch64'", ] @@ -2094,157 +1836,110 @@ fail-if = [ ["generated/test_conformance__glsl__misc__shader-uniform-packing-restrictions.html"] # Frequent timeout on win7 and linux debug. skip-if = [ - "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", + "os == 'android'", + "os == 'linux' && debug", ] ["generated/test_conformance__glsl__samplers__glsl-function-texture2dproj.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__samplers__glsl-function-texture2dprojlod.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__variables__gl-fragcoord.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__glsl__variables__glsl-built-ins.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && 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_conformance__misc__bad-arguments-test.html"] # skip because some result logged after SimpleTest.finish() skip-if = [ - "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'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'win'", + "os == 'linux'", + "os == 'android'", ] ["generated/test_conformance__misc__boolean-argument-conversion.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__misc__shader-precision-format.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__misc__type-conversion-test.html"] -fail-if = [ - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] # Resets device on Android 2.3. # Crashes on desktop Linux. skip-if = [ - "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 == 'android'", + "os == 'linux'", ] ["generated/test_conformance__misc__uninitialized-test.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__misc__webgl-specific-stencil-settings.html"] -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '14' && arch == 'aarch64' && debug", -] +skip-if = ["os == 'android' && 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' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__ogles__GL__mat3__mat3_001_to_006.html"] # Timeout on D3D11 -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__ogles__GL__notEqual__notEqual_001_to_008.html"] # Crashes -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_conformance__ogles__GL__sign__sign_001_to_006.html"] # Crashes -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_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_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 == 'android'", + "os == 'linux'", ] ["generated/test_conformance__renderbuffers__framebuffer-object-attachment.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ######################################################################## ######################################################################## @@ -2257,30 +1952,19 @@ skip-if = [ # 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' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["os == 'linux'"] ["generated/test_conformance__rendering__framebuffer-switch.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__rendering__framebuffer-texture-switch.html"] # Crashes -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__rendering__gl-scissor-test.html"] -fail-if = [ - "display == 'wayland'", -] -skip-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", -] +fail-if = ["display == 'wayland'"] +skip-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] #################### @@ -2288,31 +1972,31 @@ skip-if = [ ["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 == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", + "os == 'android'", + "os == 'win'", ] ["generated/test_conformance__rendering__preservedrawingbuffer-leak.html"] -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"] ["generated/test_conformance__rendering__rendering-stencil-large-viewport.html"] fail-if = [ - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == '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) @@ -2328,28 +2012,22 @@ 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_version == '14' && arch == 'aarch64'", - "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android'", + "os == 'win'", + "display == 'wayland'", ] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] #[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 @@ -2385,39 +2063,25 @@ skip-if = [ #[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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgb-rgb-unsigned_byte.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgb-rgb-unsigned_short_5_6_5.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_byte.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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 @@ -2484,44 +2148,32 @@ skip-if = [ #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' && arch == 'x86_64'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", ] ["generated/test_conformance__textures__misc__gl-teximage.html"] # application crashed [@ jemalloc_crash] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["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' && os_version == '11.26100' && arch == 'x86_64' && debug", -] +skip-if = ["os == 'win' && debug"] ["generated/test_conformance__textures__misc__tex-image-webgl.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__tex-image-with-invalid-data.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] - +skip-if = ["os == 'android'"] #################### # Timeouts @@ -2529,146 +2181,119 @@ skip-if = [ # Fails on QuantumRender configs, but passes on standard configs? # Might be intermittant. skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64' && debug", - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'win'", + "os == 'android' && debug", ] ["generated/test_conformance__textures__misc__texture-corner-case-videos.html"] # Timeout. Bug 1599937 - test fails consistently on ubuntu1804. skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'android'", + "os == 'linux' && os_version == '18.04'", ] ["generated/test_conformance__textures__misc__texture-mips.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__texture-npot-video.html"] skip-if = [ "win11_2009", # win11 - 50/50 intermittent - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", # win11 - 50/50 intermittent - "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1873144 + "os == 'win' && os_version == '11.26100' && processor == 'x86_64'", # win11 - 50/50 intermittent + "os == 'android' && os_version == '14'", # 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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__texture-size-cube-maps.html"] # application crashed [@ mozilla::gl::GLContext::AfterGLCall] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__texture-size-limit.html"] -skip-if = [ - "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", -] +skip-if = ["os == 'linux' && asan"] ["generated/test_conformance__textures__misc__texture-size.html"] # application crashed [@ mozilla::gl::GLContext::AfterGLCall] skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", + "os == 'android'", + "os == 'win'", ] ["generated/test_conformance__textures__misc__texture-srgb-upload.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", # Bug 1796057 -] +skip-if = ["os == 'android' && processor == 'aarch64'"] # Bug 1796057 ["generated/test_conformance__textures__misc__texture-sub-image-cube-maps.html"] # application crashed [@ mozilla::gl::GLContext::AfterGLCall] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__misc__texture-upload-size.html"] # application crashed [@ mozilla::WebGLTexture::TexSubImage] skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", - "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'win'", + "os == 'android'", ] ["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' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-luminance-luminance-unsigned_byte.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_byte.html"] skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'android'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR ] ["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_short_5_6_5.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_byte.html"] skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", - "os == 'mac' && os_version == '10.15' && arch == 'x86_64'", + "os == 'android'", + "os == 'mac' && os_version == '10.15' && processor == 'x86_64'", + "os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR ] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"] -skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", -] +skip-if = ["os == 'android'"] ["generated/test_conformance__uniforms__out-of-bounds-uniform-array-access.html"] # Crashes skip-if = [ - "os == 'android' && os_version == '14' && arch == 'aarch64'", + "os == 'android'", + "os == 'mac' && os_version == '11.20' && 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_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'", + "os == 'android'", + "os == 'linux'", + "os == 'win'", ] ["generated/test_conformance__uniforms__uniform-values-per-program.html"] # Crashes on D3D11 debug. -skip-if = [ - "os == 'win' && os_version == '11.26100' && arch == 'x86_64'", -] +skip-if = ["os == 'win'"]