1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
|
# BEGIN TAG HEADER (autogenerated, see validate_tag_consistency.py)
# OS
# tags: [ android android-oreo android-pie android-q android-r android-s
# android-t android-14 android-15 android-16
# chromeos
# fuchsia
# linux ubuntu
# mac highsierra mojave catalina bigsur monterey ventura sonoma sequoia
# win win8 win10 win11 ]
# Devices
# tags: [ android-pixel-2 android-pixel-4 android-pixel-6
# android-shield-android-tv android-sm-a137f android-sm-a236b
# android-sm-s911u1
# android-brya android-corsola
# chromeos-board-amd64-generic chromeos-board-eve chromeos-board-jacuzzi
# chromeos-board-octopus chromeos-board-volteer
# fuchsia-board-astro fuchsia-board-nelson fuchsia-board-sherlock
# fuchsia-board-qemu-x64 ]
# Platform
# tags: [ desktop
# mobile ]
# Browser
# tags: [ android-chromium
# android-webview-instrumentation
# debug debug-x64
# release release-x64
# fuchsia-chrome
# web-engine-shell
# cros-chrome ]
# GPU
# tags: [ amd amd-0x6613 amd-0x679e amd-0x67ef amd-0x6821 amd-0x7340 amd-0x7480
# apple apple-apple-m1 apple-apple-m2 apple-apple-m3
# apple-angle-metal-renderer:-apple-m1
# apple-angle-metal-renderer:-apple-m2
# apple-angle-metal-renderer:-apple-m3
# arm
# google google-0xffff google-0xc0de
# imagination
# intel intel-gen-9 intel-gen-12 intel-0xa2e intel-0xa011 intel-0x3e92
# intel-0x3e9b intel-0x4680 intel-0x46a8 intel-0x5912 intel-0x9bc5
# microsoft microsoft-0xffff
# nvidia nvidia-0x1cb3 nvidia-0x2184 nvidia-0x2783
# qualcomm qualcomm-0x41333430 qualcomm-0x36333630 qualcomm-0x36334330 ]
# Architecture
# tags: [ arch-arm64 arch-x86_64 ]
# Decoder
# tags: [ passthrough no-passthrough ]
# Browser Target CPU
# tags: [ target-cpu-64 target-cpu-32 target-cpu-31 ]
# ANGLE Backend
# tags: [ angle-disabled
# angle-d3d9 angle-d3d11
# angle-metal
# angle-opengl angle-opengles
# angle-swiftshader
# angle-vulkan ]
# Skia Renderer
# tags: [ renderer-skia-gl
# renderer-skia-vulkan
# renderer-software ]
# Driver
# tags: [ mesa_lt_19.1
# mesa_ge_21.0
# mesa_ge_23.2
# nvidia_ge_31.0.15.4601 nvidia_lt_31.0.15.4601
# nvidia_ge_535.183.01 nvidia_lt_535.183.01 ]
# ASan
# tags: [ asan no-asan ]
# Display Server
# tags: [ display-server-wayland display-server-x ]
# WebGPU Backend Validation
# tags: [ dawn-backend-validation dawn-no-backend-validation ]
# WebGPU Adapter
# tags: [ webgpu-adapter-default webgpu-adapter-swiftshader ]
# WebGPU DXC
# tags: [ webgpu-dxc-enabled webgpu-dxc-disabled ]
# WebGPU worker usage
# tags: [ webgpu-no-worker
# webgpu-service-worker
# webgpu-dedicated-worker
# webgpu-shared-worker ]
# WebGPU Compat context
# tags: [ compat-default compat-min-es31 ]
# Clang coverage
# tags: [ clang-coverage no-clang-coverage ]
# Skia Graphite
# tags: [ graphite-enabled graphite-disabled ]
# Memory capacity
# tags: [ memory_lt_16gb memory_ge_16gb ]
# results: [ Failure RetryOnFailure Skip Slow ]
# END TAG HEADER
###############################
# Permanent Skip Expectations #
###############################
# The "Skip" expectations in this section are expected to never be removed.
# This is for things like tests that will never be supported on a particular
# platform/configuration.
# ===================================
# Extension availability expectations
# ===================================
# It's expected that not all extensions will be available on all platforms.
# Having a test listed here is not necessarily a problem.
# Skip these, rather than expect them to fail, to speed up test
# execution. The browser is restarted even after expected test
# failures.
[ win ] WebglExtension_WEBGL_compressed_texture_astc [ Skip ]
# ASTC textures are expected to be supported on M1 Macs.
[ mac no-passthrough ] WebglExtension_WEBGL_compressed_texture_astc [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_WEBGL_compressed_texture_astc [ Skip ]
[ mac passthrough angle-metal amd ] WebglExtension_WEBGL_compressed_texture_astc [ Skip ]
[ mac passthrough angle-metal intel ] WebglExtension_WEBGL_compressed_texture_astc [ Skip ]
[ mac passthrough angle-metal nvidia ] WebglExtension_WEBGL_compressed_texture_astc [ Skip ]
[ linux ] WebglExtension_WEBGL_compressed_texture_astc [ Skip ]
[ win ] WebglExtension_WEBGL_compressed_texture_etc [ Skip ]
# ETC textures are expected to be supported on M1 Macs.
[ mac no-passthrough ] WebglExtension_WEBGL_compressed_texture_etc [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_WEBGL_compressed_texture_etc [ Skip ]
[ mac passthrough angle-metal amd ] WebglExtension_WEBGL_compressed_texture_etc [ Skip ]
[ mac passthrough angle-metal intel ] WebglExtension_WEBGL_compressed_texture_etc [ Skip ]
[ mac passthrough angle-metal nvidia ] WebglExtension_WEBGL_compressed_texture_etc [ Skip ]
[ linux ] WebglExtension_WEBGL_compressed_texture_etc [ Skip ]
[ win ] WebglExtension_WEBGL_compressed_texture_etc1 [ Skip ]
# ETC textures are expected to be supported on M1 Macs.
[ mac no-passthrough ] WebglExtension_WEBGL_compressed_texture_etc1 [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_WEBGL_compressed_texture_etc1 [ Skip ]
[ mac passthrough angle-metal amd ] WebglExtension_WEBGL_compressed_texture_etc1 [ Skip ]
[ mac passthrough angle-metal intel ] WebglExtension_WEBGL_compressed_texture_etc1 [ Skip ]
[ mac passthrough angle-metal nvidia ] WebglExtension_WEBGL_compressed_texture_etc1 [ Skip ]
[ linux ] WebglExtension_WEBGL_compressed_texture_etc1 [ Skip ]
[ win ] WebglExtension_WEBGL_compressed_texture_pvrtc [ Skip ]
[ mac ] WebglExtension_WEBGL_compressed_texture_pvrtc [ Skip ]
[ linux ] WebglExtension_WEBGL_compressed_texture_pvrtc [ Skip ]
[ win ] WebglExtension_WEBGL_compressed_texture_s3tc_srgb [ Skip ]
[ linux ] WebglExtension_WEBGL_compressed_texture_s3tc_srgb [ Skip ]
# BPTC textures are supported on macOS only on the Metal backend.
[ mac no-passthrough ] WebglExtension_EXT_texture_compression_bptc [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_EXT_texture_compression_bptc [ Skip ]
[ android qualcomm ] WebglExtension_EXT_texture_compression_bptc [ Skip ]
[ android qualcomm ] WebglExtension_EXT_texture_compression_rgtc [ Skip ]
[ desktop no-passthrough ] WebglExtension_EXT_color_buffer_half_float [ Skip ]
crbug.com/1058744 [ no-passthrough ] WebglExtension_OES_draw_buffers_indexed [ Skip ]
# Extensions unavailable on Android.
[ android ] WebglExtension_WEBGL_compressed_texture_pvrtc [ Skip ]
crbug.com/1473838 [ android passthrough ] WebglExtension_WEBGL_blend_func_extended [ Skip ]
crbug.com/1473838 [ android passthrough ] WebglExtension_EXT_conservative_depth [ Skip ]
crbug.com/1473838 [ android passthrough ] WebglExtension_EXT_depth_clamp [ Skip ]
crbug.com/1473838 [ android passthrough ] WebglExtension_EXT_polygon_offset_clamp [ Skip ]
crbug.com/1473838 [ android passthrough ] WebglExtension_EXT_render_snorm [ Skip ]
crbug.com/1473838 [ android passthrough ] WebglExtension_EXT_texture_mirror_clamp_to_edge [ Skip ]
crbug.com/1473838 [ android passthrough ] WebglExtension_WEBGL_polygon_mode [ Skip ]
crbug.com/1473838 [ android passthrough angle-opengles ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
[ android qualcomm ] WebglExtension_WEBGL_compressed_texture_s3tc [ Skip ]
[ android qualcomm ] WebglExtension_WEBGL_compressed_texture_s3tc_srgb [ Skip ]
# Extensions only available via passthrough decoder.
[ no-passthrough ] WebglExtension_WEBGL_blend_func_extended [ Skip ]
[ no-passthrough ] WebglExtension_EXT_clip_control [ Skip ]
[ no-passthrough ] WebglExtension_EXT_conservative_depth [ Skip ]
[ no-passthrough ] WebglExtension_EXT_depth_clamp [ Skip ]
[ no-passthrough ] WebglExtension_EXT_polygon_offset_clamp [ Skip ]
[ no-passthrough ] WebglExtension_EXT_render_snorm [ Skip ]
[ no-passthrough ] WebglExtension_EXT_texture_mirror_clamp_to_edge [ Skip ]
[ no-passthrough ] WebglExtension_NV_shader_noperspective_interpolation [ Skip ]
[ no-passthrough ] WebglExtension_OES_sample_variables [ Skip ]
[ no-passthrough ] WebglExtension_OES_shader_multisample_interpolation [ Skip ]
crbug.com/1410603 [ no-passthrough ] WebglExtension_WEBGL_clip_cull_distance [ Skip ]
[ no-passthrough ] WebglExtension_WEBGL_polygon_mode [ Skip ]
[ no-passthrough ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
crbug.com/1421437 [ no-passthrough ] WebglExtension_WEBGL_shader_pixel_local_storage [ Skip ]
[ no-passthrough ] WebglExtension_WEBGL_stencil_texturing [ Skip ]
# Extensions not available under macOS OpenGL
[ mac passthrough angle-opengl ] WebglExtension_EXT_clip_control [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_EXT_conservative_depth [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_EXT_polygon_offset_clamp [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_OES_sample_variables [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_OES_shader_multisample_interpolation [ Skip ]
# [ mac passthrough angle-opengl ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
[ mac passthrough angle-opengl ] WebglExtension_WEBGL_stencil_texturing [ Skip ]
# Currently disabled on desktop OpenGL
# Uncomment above mac-passthrough expectation if this is ever enabled on other platforms
[ passthrough angle-opengl ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
# Not supported on D3D11
[ win passthrough angle-d3d11 ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
# Not supported on Intel Macs
[ mac passthrough angle-metal arch-x86_64 ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
# Extension only available through passthrough decoder?
crbug.com/849576 [ no-passthrough ] WebglExtension_KHR_parallel_shader_compile [ Skip ]
# KHR_parallel_shader_compile will not be exposed on OpenGL drivers that don't have support for it.
crbug.com/angleproject/3031 [ android angle-opengles passthrough ] WebglExtension_KHR_parallel_shader_compile [ Skip ]
crbug.com/angleproject/3031 [ mac angle-opengl passthrough ] WebglExtension_KHR_parallel_shader_compile [ Skip ]
crbug.com/angleproject/3031 [ win angle-opengl passthrough ] WebglExtension_KHR_parallel_shader_compile [ Skip ]
# Extension not available on OpenGL ES, but could plausibly be
# implemented on ANGLE's Vulkan backend.
[ android no-passthrough ] WebglExtension_WEBGL_provoking_vertex [ Skip ]
[ android passthrough angle-opengles ] WebglExtension_WEBGL_provoking_vertex [ Skip ]
# Not available on Mesa older than 21.3.0
crbug.com/1473838 [ linux intel passthrough ] WebglExtension_EXT_render_snorm [ Skip ]
# This test uses H.264 and the ChromeOS and Fuchsia bots aren't compiled with
# proprietary codecs.
crbug.com/1136205 [ chromeos ] conformance/textures/misc/video-rotation.html [ Skip ]
crbug.com/1136205 [ fuchsia ] conformance/textures/misc/video-rotation.html [ Skip ]
# Too slow (take about one hour to run)
# Currently commented out due to the tests not currently being found by the
# parser due to being explicitly omitted in
# deqp/functional/gles3/00_test_list.txt.
# This expectation can be re-added when/if these tests are re-enabled.
# crbug.com/619403 deqp/functional/gles3/builtinprecision/* [ Skip ]
# Won't investigate failures on validating command decoder. Remove once it's unshipped.
crbug.com/1237319 [ chromeos no-passthrough ] conformance2/textures/canvas_sub_rectangle/tex-3d-* [ Skip ]
crbug.com/1237319 [ chromeos no-passthrough ] conformance2/textures/misc/origin-clean-conformance-offscreencanvas.html [ Skip ]
crbug.com/1237319 [ chromeos no-passthrough ] conformance2/textures/webgl_canvas/tex-3d-* [ Skip ]
crbug.com/1237319 [ chromeos no-passthrough ] deqp/functional/gles3/clipping.html [ Skip ]
# Unsupported on ChromeOS VM
crbug.com/1473838 [ chromeos chromeos-board-amd64-generic passthrough ] WebglExtension_EXT_conservative_depth [ Skip ]
crbug.com/1473838 [ chromeos chromeos-board-amd64-generic passthrough ] WebglExtension_EXT_texture_mirror_clamp_to_edge [ Skip ]
crbug.com/1473838 [ chromeos chromeos-board-amd64-generic passthrough ] WebglExtension_NV_shader_noperspective_interpolation [ Skip ]
crbug.com/1473838 [ chromeos chromeos-board-amd64-generic passthrough ] WebglExtension_WEBGL_polygon_mode [ Skip ]
crbug.com/1473838 [ chromeos chromeos-board-amd64-generic angle-opengles passthrough ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
# Extensions not available on jacuzzi ChromeOS devices.
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_WEBGL_blend_func_extended [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_EXT_clip_control [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_EXT_conservative_depth [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_EXT_depth_clamp [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_EXT_polygon_offset_clamp [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_EXT_render_snorm [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_EXT_texture_compression_bptc [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_EXT_texture_compression_rgtc [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_EXT_texture_mirror_clamp_to_edge [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_EXT_texture_norm16 [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough angle-opengles ] WebglExtension_KHR_parallel_shader_compile [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_NV_shader_noperspective_interpolation [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_OES_texture_float_linear [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_OVR_multiview2 [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_WEBGL_clip_cull_distance [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_WEBGL_compressed_texture_pvrtc [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_WEBGL_compressed_texture_s3tc [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_WEBGL_compressed_texture_s3tc_srgb [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough ] WebglExtension_WEBGL_polygon_mode [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi ] WebglExtension_WEBGL_provoking_vertex [ Skip ]
crbug.com/1486664 [ chromeos cros-chrome chromeos-board-jacuzzi passthrough angle-opengles ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
# Extensions not available on volteer ChromeOS devices.
crbug.com/1505599 [ chromeos cros-chrome chromeos-board-volteer passthrough angle-opengles ] WebglExtension_EXT_conservative_depth [ Skip ]
crbug.com/1505599 [ chromeos cros-chrome chromeos-board-volteer passthrough angle-opengles ] WebglExtension_EXT_render_snorm [ Skip ]
crbug.com/1505599 [ chromeos cros-chrome chromeos-board-volteer passthrough angle-opengles ] WebglExtension_OVR_multiview2 [ Skip ]
crbug.com/1505599 [ chromeos cros-chrome chromeos-board-volteer passthrough angle-opengles ] WebglExtension_WEBGL_clip_cull_distance [ Skip ]
crbug.com/1505599 [ chromeos cros-chrome chromeos-board-volteer passthrough angle-opengles ] WebglExtension_WEBGL_compressed_texture_pvrtc [ Skip ]
crbug.com/1505599 [ chromeos cros-chrome chromeos-board-volteer passthrough angle-opengles ] WebglExtension_WEBGL_polygon_mode [ Skip ]
crbug.com/1505599 [ chromeos cros-chrome chromeos-board-volteer passthrough angle-opengles ] WebglExtension_WEBGL_provoking_vertex [ Skip ]
crbug.com/1505599 [ chromeos cros-chrome chromeos-board-volteer passthrough angle-opengles ] WebglExtension_WEBGL_render_shared_exponent [ Skip ]
# Parallel Shader compile/link is currently slower with Vulkan backend.
crbug.com/angleproject/6748 [ angle-vulkan passthrough ] WebglExtension_KHR_parallel_shader_compile [ Skip ]
crbug.com/angleproject/6748 [ angle-swiftshader passthrough ] WebglExtension_KHR_parallel_shader_compile [ Skip ]
# The Mac OpenGL driver doesn't support shader images, and therefore does not support PLS.
crbug.com/1421437 [ mac passthrough angle-opengl ] WebglExtension_WEBGL_shader_pixel_local_storage [ Skip ]
# Extensions not available on Corsola devices with Android Desktop.
[ android android-corsola arm passthrough angle-vulkan ] WebglExtension_EXT_float_blend [ Skip ]
[ android android-corsola arm passthrough angle-vulkan ] WebglExtension_EXT_texture_compression_bptc [ Skip ]
[ android android-corsola arm passthrough angle-vulkan ] WebglExtension_EXT_texture_compression_rgtc [ Skip ]
[ android android-corsola arm passthrough angle-vulkan ] WebglExtension_EXT_texture_norm16 [ Skip ]
[ android android-corsola arm passthrough angle-vulkan ] WebglExtension_WEBGL_clip_cull_distance [ Skip ]
[ android android-corsola arm passthrough angle-vulkan ] WebglExtension_WEBGL_compressed_texture_s3tc [ Skip ]
[ android android-corsola arm passthrough angle-vulkan ] WebglExtension_WEBGL_compressed_texture_s3tc_srgb [ Skip ]
[ android android-corsola arm passthrough angle-vulkan ] WebglExtension_WEBGL_provoking_vertex [ Skip ]
###############################
# Temporary Skip Expectations #
###############################
# The "Skip" expectations in this section are expected to be removable at some
# point. This is for things like tests that fail in a way that negatively and
# significantly impacts other tests, e.g. killing the test device.
# Skipped because EXT_disjoint_timer_query was disabled due to security concerns.
crbug.com/808744 [ android ] WebglExtension_EXT_disjoint_timer_query_webgl2 [ Skip ]
# TODO(crbug.com/40596525): Remove when either workaround is implemented in cmd decoder,
# or when angle is used everywhere.
crbug.com/891861 [ mac no-passthrough ] WebglExtension_WEBGL_draw_instanced_base_vertex_base_instance [ Skip ]
crbug.com/891861 [ mac no-passthrough ] WebglExtension_WEBGL_multi_draw_instanced_base_vertex_base_instance [ Skip ]
crbug.com/891861 [ android no-passthrough ] WebglExtension_WEBGL_draw_instanced_base_vertex_base_instance [ Skip ]
crbug.com/891861 [ android no-passthrough ] WebglExtension_WEBGL_multi_draw_instanced_base_vertex_base_instance [ Skip ]
# This test needs to be rewritten to measure its expected
# performance; it's currently too flaky even on release bots.
crbug.com/735483 conformance/rendering/texture-switch-performance.html [ Skip ]
crbug.com/735483 conformance2/rendering/texture-switch-performance.html [ Skip ]
# Crashes on NVIDIA, might be fixed by newer drivers.
crbug.com/1236820 [ linux nvidia ] conformance2/glsl3/reciprocal-sqrt-of-sum-of-squares-crash.html [ Skip ]
# Can occasionally kill machines. Appears to be tied to kernel version, so can
# be removed once upgraded to kernel 5.4.0-77 or later.
crbug.com/1255288 [ linux intel ] conformance/textures/misc/texture-size-limit.html [ Skip ]
# Until Qualcomm devices on the waterfall and CQ are updated to Android S, skip this new test.
crbug.com/1076188 [ android qualcomm ] conformance2/glsl3/fragment-shader-loop-crash.html [ Skip ]
# TODO(crbug.com/40097199): Remove when either workaround is implemented in cmd decoder,
# or when angle is used everywhere.
crbug.com/1000354 [ android no-passthrough ] conformance2/extensions/ext-texture-norm16.html [ Skip ]
# Skip these, rather than expect them to fail to avoid that they impact the
# following tests result.
crbug.com/1237319 [ chromeos passthrough ] conformance2/reading/read-pixels-from-fbo-test.html [ Skip ]
crbug.com/1237319 [ chromeos passthrough ] conformance2/rendering/framebuffer-render-to-layer.html [ Skip ]
crbug.com/1237319 [ chromeos passthrough ] conformance/textures/misc/texture-size-limit.html [ Skip ]
crbug.com/1237319 [ chromeos passthrough ] conformance2/textures/misc/tex-3d-size-limit.html [ Skip ]
crbug.com/1237319 [ chromeos passthrough ] conformance/extensions/khr-parallel-shader-compile.html [ Skip ]
# Was timing out, but may be removable now.
crbug.com/1008535 [ android android-pixel-2 passthrough ] conformance2/textures/misc/tex-image-with-bad-args-from-dom-elements.html [ Skip ]
# Flakily causes subsequent tests to fail, particularly when running them in
# parallel. This is likely a general AMD issue, but target specific GPUs for now
# in case the upcoming AMD Macbooks don't have this issue.
crbug.com/1345782 [ mac amd-0x6821 passthrough angle-opengl ] deqp/functional/gles3/shadertexturefunction/texturesize.html [ Skip ]
crbug.com/1345782 [ mac amd-0x679e passthrough angle-opengl ] deqp/functional/gles3/shadertexturefunction/texturesize.html [ Skip ]
crbug.com/1345782 [ mac amd-0x67ef passthrough angle-opengl ] deqp/functional/gles3/shadertexturefunction/texturesize.html [ Skip ]
# Can cause subsequent tests to fail.
crbug.com/329130354 [ mac amd-0x679e ] conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html [ Skip ]
crbug.com/329130354 [ mac amd-0x679e ] deqp/functional/gles3/fborender/resize_03.html [ Skip ]
# Crashes fuchsia on qemu
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] WebglExtension_OVR_multiview2 [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/extensions/oes-texture-float-linear.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/glsl/samplers/glsl-function-texture2dprojlod.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/texture-corner-case-videos.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/texture-upload-size.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/uniforms/uniform-default-values.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/buffers/uniform-buffers-state-restoration.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/query/occlusion-query.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/rendering/blitframebuffer-resolve-to-back-buffer.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-r16f-red-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-r16f-red-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-r32f-red-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-r8-red-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rg16f-rg-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rg16f-rg-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rg32f-rg-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rg8-rg-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb16f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb16f-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb32f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb8-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgba16f-rgba-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgba16f-rgba-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgba32f-rgba-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgba8-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-srgb8-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-r32f-red-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-r8-red-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rg32f-rg-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rg8-rg-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rg8ui-rg_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb32f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgba32f-rgba-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/image_bitmap_from_video/tex-2d-rg8ui-rg_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-r16f-red-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-r16f-red-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-r32f-red-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-r8-red-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rg16f-rg-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rg16f-rg-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rg32f-rg-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rg8-rg-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rg8ui-rg_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb16f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb16f-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb32f-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb8-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb9_e5-rgb-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgb9_e5-rgb-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgba16f-rgba-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgba16f-rgba-half_float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgba32f-rgba-float.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgba8-rgba-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-srgb8-rgb-unsigned_byte.html [ Skip ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html [ Skip ]
###############################
# Permanent Slow Expectations #
###############################
# The "Slow" expectations in this section are expected to stick around, i.e.
# they are not attributed to some known issue that needs resolving.
# Seems to be slow due to a single readPixels call which can take ~10 seconds on
# this config under normal circumstances. With bad luck, we can end up hitting
# the default 15 second heartbeat timeout because of that.
crbug.com/1426916 [ chromeos chromeos-board-amd64-generic passthrough ] deqp/functional/gles3/uniformapi/random.html [ Slow ]
[ win intel-0x4680 ] deqp/functional/gles3/multisample/fbo_max_samples.html [ Failure ]
###################
# Failures/Flakes #
###################
# Non-"Skip" expectations go here to suppress regular flakes/failures.
crbug.com/891953 [ mac ] WebglExtension_OVR_multiview2 [ Failure ]
crbug.com/891953 [ android ] WebglExtension_OVR_multiview2 [ Failure ]
# ========================
# Conformance expectations
# ========================
# Test needs to be revised for new mipmap/texture completeness rules.
crbug.com/angleproject/42267266 [ passthrough ] conformance2/textures/misc/immutable-tex-render-feedback.html [ Failure ]
# Failing new updated tests
crbug.com/406187744 conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html [ Failure ]
crbug.com/406187744 conformance2/offscreencanvas/offscreencanvas-transfer-image-bitmap.html [ Failure ]
crbug.com/1131224 [ angle-d3d11 desktop no-asan passthrough release win ] conformance2/rendering/framebuffer-mismatched-attachment-targets.html [ Failure ]
crbug.com/1108086 [ no-passthrough ] conformance2/renderbuffers/framebuffer-object-attachment.html [ Failure ]
crbug.com/angleproject/4807 [ win angle-d3d11 passthrough ] conformance2/glsl3/switch-case.html [ Failure ]
# Failing at least on Pixel 4, both validating and passthrough
crbug.com/1336010 [ android angle-disabled no-passthrough ] conformance2/extensions/oes-draw-buffers-indexed.html [ Failure ]
# Failing on some platforms.
crbug.com/1175371 [ angle-opengl display-server-x linux passthrough ] conformance/extensions/khr-parallel-shader-compile.html [ Failure ]
# Won't investigate failure on validating command decoder. Remove once it's unshipped.
crbug.com/angleproject/5499 [ no-passthrough ] conformance/glsl/misc/shaders-with-name-conflicts.html [ Failure ]
crbug.com/angleproject/5768 [ no-passthrough ] conformance2/textures/misc/immutable-tex-render-feedback.html [ Failure ]
crbug.com/953120 [ angle-disabled no-asan no-passthrough ] conformance/programs/program-handling.html [ Failure ]
crbug.com/949249 [ win passthrough angle-d3d11 ] conformance2/extensions/ovr_multiview2.html [ Failure ]
crbug.com/949249 [ linux passthrough angle-opengl ] conformance2/extensions/ovr_multiview2.html [ Failure ]
crbug.com/949249 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/extensions/ovr_multiview2.html [ Failure ]
# New validation was not implemented on the validating command decoder.
crbug.com/angleproject/6358 [ no-passthrough ] conformance/programs/program-test.html [ Failure ]
# Persistent flaking on Windows and Mac/M1
crbug.com/365680830 [ arch-x86_64 angle-d3d11 graphite-enabled win ] deqp/functional/gles3/occlusionquery_strict.html [ Failure ]
crbug.com/365680830 [ mac arch-arm64 angle-metal ] deqp/functional/gles3/occlusionquery_strict.html [ Failure ]
####################
# Win failures #
####################
crbug.com/angleproject/4417 [ win angle-d3d11 ] conformance2/rendering/framebuffer-render-to-layer-angle-issue.html [ Failure ]
crbug.com/angleproject/1465 [ win angle-d3d11 ] conformance2/glsl3/tricky-loop-conditions.html [ Failure ]
## Win / NVIDIA ##
crbug.com/1073613 [ angle-d3d11 win nvidia ] conformance2/textures/misc/tex-3d-mipmap-levels-intel-bug.html [ Failure ]
crbug.com/1073613 [ angle-d3d11 win nvidia ] conformance2/textures/misc/tex-mipmap-levels.html [ Failure ]
crbug.com/1073613 [ angle-d3d11 win nvidia ] deqp/functional/gles3/shadertexturefunction/texturesize.html [ Failure ]
## Win / AMD ##
# Recently many tests have become flaky on this configuration, returning
# (72, 72, 72) when reading back pixels, rather than the expected values.
# Going to try to skip the individual failing tests, rather than adding a
# wildcard flaky suppression for all of the tests.
crbug.com/483282 [ amd-0x7340 angle-d3d11 win10 ] conformance2/rendering/blitframebuffer-stencil-only.html [ Failure ]
## Win / Intel ##
crbug.com/401515599 [ win11 amd-0x7480 ] deqp/functional/gles3/transformfeedback/interpolation_centroid.html [ Failure ]
crbug.com/401515599 [ win11 amd-0x7480 ] deqp/functional/gles3/transformfeedback/interpolation_smooth.html [ Failure ]
## Win / Adreno 690 / D3D11
crbug.com/1523062 [ win11 qualcomm-0x41333430 angle-d3d11 ] conformance/rendering/bind-framebuffer-flush-bug.html [ Failure ]
crbug.com/1523062 [ win11 qualcomm-0x41333430 angle-d3d11 ] conformance/textures/misc/mipmap-fbo.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_lines.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_points.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_triangles.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/basic_types_separate_lines.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/basic_types_separate_points.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/basic_types_separate_triangles.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/interpolation_centroid.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/interpolation_flat.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/interpolation_smooth.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/point_size.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/position.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/random_interleaved_lines.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/random_interleaved_points.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/random_interleaved_triangles.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/random_separate_lines.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/random_separate_points.html [ Failure ]
crbug.com/1523323 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/transformfeedback/random_separate_triangles.html [ Failure ]
crbug.com/1523401 [ win11 qualcomm-0x41333430 angle-d3d11 ] conformance2/reading/format-r11f-g11f-b10f.html [ Failure ]
crbug.com/1523401 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/shaderindexing/tmp.html [ Failure ]
crbug.com/1523401 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/shaderindexing/varying.html [ Failure ]
crbug.com/1523401 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html [ Failure ]
crbug.com/41496352 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/shaderprecision_float.html [ Failure ]
crbug.com/329211596 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/shaderprecision_int.html [ Failure ]
crbug.com/329211596 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/functional/gles3/shaderprecision_uint.html [ Failure ]
crbug.com/408364836 [ win11 qualcomm-0x41333430 angle-d3d11 ] deqp/data/gles3/shaders/linkage.html [ RetryOnFailure ]
# Graphite
crbug.com/332745399 [ win graphite-enabled ] conformance2/extensions/webgl-shader-pixel-local-storage.html [ Failure ]
######################
# Mac Metal failures #
######################
## Metal Common ##
# Common to all GPU types (both AMD and Intel, at least)
## Metal AMD ##
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] conformance2/textures/misc/tex-srgb-mipmap.html [ Failure ]
crbug.com/angleproject/6430 [ mac passthrough angle-metal amd ] deqp/functional/gles3/pixelbufferobject.html [ Failure ]
crbug.com/angleproject/6430 [ mac passthrough angle-metal amd ] deqp/functional/gles3/shaderpackingfunction.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less_or_equal.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/texturespecification/texstorage2d_format_depth_stencil.html [ Failure ]
crbug.com/angleproject/6430 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/texturespecification/texstorage2d_format_depth_stencil.html [ Failure ]
crbug.com/angleproject/7425 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/texturespecification/texstorage3d_format_depth_stencil.html [ Failure ]
crbug.com/angleproject/7425 [ amd-0x67ef angle-metal passthrough sonoma ] deqp/functional/gles3/texturespecification/texstorage3d_format_depth_stencil.html [ Failure ]
crbug.com/328100306 [ amd angle-metal graphite-enabled sonoma ] conformance/glsl/bugs/sampler-array-using-loop-index.html [ Failure ]
## Metal Intel ##
crbug.com/angleproject/6430 [ angle-metal intel mac passthrough ] deqp/functional/gles3/readpixel.html [ Failure ]
######################################################################
# Mac failures (mainly OpenGL; some need to be reevaluated on Metal) #
######################################################################
crbug.com/angleproject/4242 [ angle-opengl mac arch-x86_64 ] conformance2/glsl3/matrix-row-major-dynamic-indexing.html [ Failure ]
# Fails on multiple GPU types.
crbug.com/844311 [ angle-opengl mac ] conformance/glsl/misc/fragcolor-fragdata-invariant.html [ Failure ]
crbug.com/630800 [ angle-opengl intel mac ] conformance2/rendering/framebuffer-completeness-unaffected.html [ Failure ]
crbug.com/630800 [ nvidia mac ] conformance2/rendering/framebuffer-completeness-unaffected.html [ Failure ]
crbug.com/630800 [ angle-opengl intel mac ] deqp/functional/gles3/fbocompleteness.html [ Failure ]
crbug.com/630800 [ nvidia mac ] deqp/functional/gles3/fbocompleteness.html [ Failure ]
crbug.com/1289803 [ angle-opengl arch-x86_64 mac ] conformance2/extensions/webgl-multi-draw-instanced-base-vertex-base-instance.html [ Failure ]
crbug.com/407622671 [ mac asan graphite-disabled ] deqp/functional/gles3/clipping.html [ RetryOnFailure ]
## Mac AMD ##
# TODO(kbr): uncomment the following two exepectations after test
# has been made more robust.
# self.Fail('conformance/rendering/texture-switch-performance.html',
# ['mac', 'amd'], bug=735483)
# self.Fail('conformance2/rendering/texture-switch-performance.html',
# ['mac', 'amd'], bug=735483)
# The following two failures appeared to be a regression in the Mac AMD OpenGL
# driver on 10.13.6 specifically, and are still flaky. Unfortunately when the
# tests fail, they fail three times in a row, so we must mark them failing
# rather than flaky.
crbug.com/870856 [ mac amd angle-opengl ] conformance2/textures/misc/tex-base-level-bug.html [ Failure ]
crbug.com/1230781 [ mac amd angle-opengl ] conformance/canvas/to-data-url-test.html [ Failure ]
crbug.com/642822 [ mac amd ] conformance2/rendering/clipping-wide-points.html [ Failure ]
crbug.com/1278935 [ amd-0x67ef angle-opengl mac renderer-skia-gl ] deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_00.html [ Failure ]
crbug.com/1278935 [ amd-0x67ef angle-opengl mac renderer-skia-gl ] deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_01.html [ Failure ]
crbug.com/1278935 [ amd-0x67ef angle-opengl mac renderer-skia-gl ] deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_00.html [ Failure ]
crbug.com/1278935 [ amd-0x67ef angle-opengl mac renderer-skia-gl ] deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_01.html [ Failure ]
crbug.com/1278935 [ amd-0x67ef angle-opengl mac renderer-skia-gl ] deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_00.html [ Failure ]
crbug.com/1278935 [ amd-0x67ef angle-opengl mac renderer-skia-gl ] deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_01.html [ Failure ]
crbug.com/angleproject/5224 [ amd-0x67ef angle-opengl mac passthrough ] conformance2/rendering/instanced-arrays.html [ Failure ]
crbug.com/angleproject/5225 [ amd-0x67ef angle-opengl mac passthrough ] conformance2/rendering/vertex-id.html [ Failure ]
crbug.com/angleproject/7412 [ amd-0x67ef angle-opengl mac no-asan passthrough ] conformance2/rendering/vertex-id-large-count.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/framebufferblit/conversion_04.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/framebufferblit/conversion_08.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/framebufferblit/conversion_10.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/framebufferblit/conversion_11.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/framebufferblit/conversion_12.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/framebufferblit/conversion_13.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/framebufferblit/conversion_18.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/framebufferblit/conversion_25.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/pixelbufferobject.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_lines.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_points.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_triangles.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/transformfeedback/random_interleaved_lines.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/transformfeedback/random_interleaved_points.html [ Failure ]
crbug.com/1422032 [ mac amd-0x67ef angle-opengl ] deqp/functional/gles3/transformfeedback/random_interleaved_triangles.html [ Failure ]
crbug.com/354627705 [ mac amd-0x7340 angle-opengl ] conformance/context/context-attributes-alpha-depth-stencil-antialias.html [ Failure ]
crbug.com/354627705 [ mac amd-0x7340 angle-metal ] conformance/extensions/webgl-polygon-mode.html [ Failure ]
crbug.com/354627705 [ mac amd-0x7340 angle-opengl ] conformance/rendering/color-mask-preserved-during-implicit-clears.html [ Failure ]
crbug.com/354627705 [ mac amd-0x7340 angle-opengl ] conformance2/rendering/blitframebuffer-resolve-to-back-buffer.html [ Failure ]
crbug.com/354627705 [ mac amd-0x7340 angle-metal ] deqp/functional/gles3/fbomultisample.2_samples.html [ Failure ]
crbug.com/354627705 [ mac amd-0x7340 angle-metal ] deqp/functional/gles3/fbomultisample.4_samples.html [ Failure ]
crbug.com/354627705 [ mac amd-0x7340 angle-opengl ] deqp/functional/gles3/instancedrendering.html [ Failure ]
crbug.com/328102507 [ mac amd angle-opengl graphite-disabled ] conformance/renderbuffers/stencil-renderbuffer-initialization.html [ Failure ]
crbug.com/372295133 [ amd-0x679e angle-metal monterey passthrough ] deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less_or_equal.html [ Failure ]
crbug.com/374696517 [ mac amd-0x7340 angle-metal ] deqp/functional/gles3/uniformbuffers/random.html [ RetryOnFailure ]
crbug.com/406424259 [ mac amd-0x7340 graphite-disabled ] conformance2/rendering/vertex-id-large-count.html [ Failure ]
## Mac Intel ##
crbug.com/679692 [ angle-metal intel mac no-asan ] conformance2/textures/misc/angle-stuck-depth-textures.html [ Failure ]
crbug.com/606074 [ angle-opengl intel mac ] deqp/functional/gles3/texturefiltering/2d_combinations_01.html [ Failure ]
crbug.com/606074 [ angle-opengl intel mac ] deqp/functional/gles3/texturefiltering/cube_combinations_01.html [ Failure ]
crbug.com/606074 [ angle-opengl intel mac ] deqp/functional/gles3/texturefiltering/2d_array_combinations_01.html [ Failure ]
crbug.com/606074 [ angle-opengl intel mac ] deqp/functional/gles3/texturefiltering/3d_combinations_06.html [ Failure ]
crbug.com/606074 [ angle-opengl intel mac ] deqp/functional/gles3/texturefiltering/3d_combinations_07.html [ Failure ]
crbug.com/606074 [ angle-opengl intel mac ] deqp/functional/gles3/texturefiltering/3d_combinations_08.html [ Failure ]
crbug.com/658724 [ angle-opengl intel mac ] deqp/functional/gles3/framebufferblit/rect_03.html [ Failure ]
crbug.com/658724 [ angle-opengl intel mac ] deqp/functional/gles3/framebufferblit/rect_04.html [ Failure ]
crbug.com/1334684 [ mac intel angle-metal ] deqp/functional/gles3/shaderbuiltinvar.html [ Failure ]
crbug.com/angleproject/5222 [ mac passthrough angle-opengl intel ] conformance2/textures/misc/tex-unpack-params.html [ Failure ]
crbug.com/angleproject/5226 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/texturespecification/basic_copyteximage2d.html [ Failure ]
crbug.com/angleproject/5222 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/texturespecification/teximage3d_pbo_params.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_lines.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_points.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/basic_types_interleaved_triangles.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/basic_types_separate_lines.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/basic_types_separate_points.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/basic_types_separate_triangles.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/interpolation_centroid.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/interpolation_flat.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/interpolation_smooth.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/point_size.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/position.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/random_interleaved_lines.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/random_interleaved_points.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/random_interleaved_triangles.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/random_separate_lines.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/random_separate_points.html [ Failure ]
crbug.com/angleproject/5221 [ mac passthrough angle-opengl intel ] deqp/functional/gles3/transformfeedback/random_separate_triangles.html [ Failure ]
# Canvas missing colored squares - synchronization issue.
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/canvas/tex-2d* [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/canvas/tex-3d* [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_byte.html [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/image_bitmap_from_video/* [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/video/tex-2d* [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/video/tex-3d* [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] conformance2/textures/webgl_canvas/tex-3d* [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] deqp/functional/gles3/fbomultisample.4_samples.html [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] deqp/functional/gles3/fbomultisample.8_samples.html [ Failure ]
crbug.com/425671158 [ mac intel-0x3e9b angle-metal ] deqp/functional/gles3/framebufferblit/conversion_24.html [ Failure ]
## Mac / Apple Silicon ##
crbug.com/413035866 [ sequoia apple angle-opengl ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
## Mac / M1 / OpenGL ##
crbug.com/angleproject/5223 [ angle-opengl apple mac arch-arm64 no-asan passthrough ] conformance2/textures/misc/tex-mipmap-levels.html [ Failure ]
crbug.com/1130112 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/texturefiltering/cube_combinations_00.html [ Failure ]
crbug.com/1130112 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/texturefiltering/cube_combinations_02.html [ Failure ]
crbug.com/1130112 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/texturefiltering/cube_combinations_04.html [ Failure ]
crbug.com/1130112 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/texturefiltering/cube_sizes_03.html [ Failure ]
crbug.com/1130112 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/texturefiltering/cube_sizes_04.html [ Failure ]
crbug.com/1130117 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/multisample/fbo_4_samples.html [ Failure ]
crbug.com/1130117 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/multisample/fbo_max_samples.html [ Failure ]
crbug.com/1130118 [ mac apple passthrough angle-opengl ] conformance2/rendering/blitframebuffer-filter-srgb.html [ Failure ]
crbug.com/1130118 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/framebufferblit/rect_03.html [ Failure ]
crbug.com/1130118 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/framebufferblit/rect_04.html [ Failure ]
crbug.com/1130119 [ mac apple passthrough angle-opengl ] conformance2/glsl3/vector-dynamic-indexing.html [ Failure ]
crbug.com/1130119 [ mac apple passthrough angle-opengl ] conformance2/textures/misc/tex-base-level-bug.html [ Failure ]
crbug.com/1130119 [ mac apple passthrough angle-opengl ] conformance2/rendering/framebuffer-completeness-unaffected.html [ Failure ]
crbug.com/1130119 [ mac apple passthrough angle-opengl ] conformance2/rendering/framebuffer-render-to-layer.html [ Failure ]
crbug.com/1130119 [ mac apple passthrough angle-opengl ] deqp/functional/gles3/fbocompleteness.html [ Failure ]
# Newly added tests on NVIDIA passthrough
crbug.com/982292 [ mac nvidia angle-opengl passthrough ] conformance/extensions/webgl-multi-draw.html [ Failure ]
crbug.com/982292 [ mac nvidia angle-opengl passthrough ] conformance2/glsl3/tricky-loop-conditions.html [ Failure ]
crbug.com/982292 [ mac nvidia angle-opengl passthrough ] deqp/functional/gles3/instancedrendering.html [ Failure ]
####################
# Linux failures #
####################
## Linux NVIDIA ##
crbug.com/1115314 [ linux nvidia-0x2184 angle-opengl passthrough ] deqp/functional/gles3/fbocompleteness.html [ Failure ]
## Linux AMD RX 5500 XT ##
crbug.com/1152588 [ linux amd-0x7340 angle-opengl passthrough ] conformance2/rendering/multisampling-fragment-evaluation.html [ Failure ]
## Linux Intel Mesa Version **
crbug.com/329698340 [ linux intel angle-opengl passthrough mesa_ge_23.2 ] conformance2/rendering/blitframebuffer-filter-outofbounds.html [ Failure ]
####################
# Android failures #
####################
crbug.com/angleproject/4417 [ android ] conformance2/rendering/framebuffer-render-to-layer.html [ Failure ]
# Video uploads to some texture formats new in WebGL 2.0 are
# failing.
crbug.com/951628 [ android no-passthrough ] conformance/rendering/blending.html [ Failure ]
# TODO(kbr): flakiness is seen on this configuration with the
# passthrough command decoder across many different WebGL conformance
# tests. Limit this blanket suppression to Android P in case this is
# caused by driver bugs.
crbug.com/1132297 [ android-pie android-pixel-2 passthrough ] * [ RetryOnFailure ]
crbug.com/906737 [ android angle-disabled no-passthrough qualcomm ] conformance/extensions/webgl-compressed-texture-astc.html [ Failure ]
crbug.com/1176485 [ android qualcomm ] conformance2/glsl3/uint-int-shift-bug.html [ Failure ]
crbug.com/1027125 [ android angle-disabled no-passthrough qualcomm ] deqp/functional/gles3/negativetextureapi.html [ Failure ]
## Pixel 2 ##
crbug.com/906742 [ android android-pixel-2 no-passthrough qualcomm ] conformance2/glsl3/compare-structs-containing-arrays.html [ Failure ]
crbug.com/1000354 [ android android-pixel-2 passthrough ] conformance2/reading/read-pixels-from-fbo-test.html [ Failure ]
crbug.com/1276186 [ android android-pixel-2 ] conformance2/glsl3/array-equality.html [ Failure ]
crbug.com/angleproject/7421 [ android android-pixel-2 angle-disabled no-passthrough ] conformance2/renderbuffers/invalidate-framebuffer.html [ Failure ]
## Pixel 4 ##
crbug.com/1175232 [ android android-pixel-4 angle-opengles passthrough ] conformance2/reading/read-pixels-from-fbo-test.html [ Failure ]
crbug.com/angleproject/3684 [ android angle-opengles ] conformance2/renderbuffers/multisample-with-full-sample-counts.html [ Failure ]
## DrDc being re-enabled ##
crbug.com/380250262 [ android android-pixel-2 angle-opengles passthrough ] conformance/canvas/render-after-resize-test.html [ Failure ]
crbug.com/380250262 [ android android-pixel-4 angle-opengles passthrough ] conformance/canvas/render-after-resize-test.html [ Failure ]
############################
# Android Desktop failures #
############################
# Brya failures
crbug.com/416483574 [ android android-brya passthrough ] conformance/extensions/webgl-compressed-texture-size-limit.html [ Failure ]
crbug.com/416483574 [ android android-brya passthrough ] conformance/textures/misc/texture-srgb-upload.html [ Failure ]
crbug.com/416408899 [ android android-brya passthrough ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/416408899 [ android android-brya passthrough ] conformance2/extensions/webgl-clip-cull-distance.html [ Failure ]
crbug.com/416408899 [ android android-brya passthrough ] conformance2/extensions/webgl-multi-draw-instanced-base-vertex-base-instance.html [ Failure ]
crbug.com/416408899 [ android android-brya passthrough ] conformance2/reading/read-pixels-from-fbo-test.html [ Failure ]
crbug.com/416408899 [ android android-brya passthrough ] conformance2/renderbuffers/framebuffer-test.html [ Failure ]
crbug.com/416417899 [ android android-brya passthrough ] deqp/functional/gles3/negativebufferapi.html [ Failure ]
crbug.com/416417899 [ android android-brya passthrough ] deqp/functional/gles3/negativetextureapi.html [ Failure ]
crbug.com/416417899 [ android android-brya passthrough ] deqp/functional/gles3/shaderoperator/unary_operator_00.html [ Failure ]
# Corsola failures
crbug.com/422215338 [ android android-corsola passthrough ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/422215338 [ android android-corsola passthrough ] conformance2/extensions/ovr_multiview2.html [ Failure ]
crbug.com/422215338 [ android android-corsola passthrough ] conformance2/extensions/webgl-multi-draw-instanced-base-vertex-base-instance.html [ Failure ]
crbug.com/422215338 [ android android-corsola passthrough ] conformance2/renderbuffers/framebuffer-test.html [ Failure ]
crbug.com/422215338 [ android android-corsola passthrough ] conformance2/rendering/out-of-bounds-index-buffers-after-copying.html [ Failure ]
crbug.com/422215338 [ android android-corsola passthrough ] conformance2/textures/misc/copy-texture-image-same-texture.html [ Failure ]
crbug.com/422215338 [ android android-corsola passthrough ] conformance2/textures/misc/tex-unpack-params.html [ Failure ]
crbug.com/422226026 [ android android-corsola passthrough ] deqp/functional/gles3/clipping.html [ Failure ]
crbug.com/422226026 [ android android-corsola passthrough ] deqp/functional/gles3/negativebufferapi.html [ Failure ]
crbug.com/422226026 [ android android-corsola passthrough ] deqp/functional/gles3/negativetextureapi.html [ Failure ]
#####################
# ChromeOS failures #
#####################
crbug.com/1380411 [ chromeos passthrough ] conformance2/textures/canvas_sub_rectangle/tex-3d-* [ Skip ]
crbug.com/1380411 [ chromeos passthrough ] conformance2/textures/webgl_canvas/tex-3d-* [ Skip ]
crbug.com/1213198 [ chromeos chromeos-board-amd64-generic ] WebglExtension_OVR_multiview2 [ Failure ]
crbug.com/1213198 [ chromeos chromeos-board-amd64-generic ] WebglExtension_WEBGL_compressed_texture_pvrtc [ Failure ]
crbug.com/1215695 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fbocolorbuffer/tex2d_00.html [ Failure ]
crbug.com/1215695 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fbocolorbuffer/tex2d_01.html [ Failure ]
crbug.com/1215695 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fbocolorbuffer/tex2darray_00.html [ Failure ]
crbug.com/1215695 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fbocolorbuffer/tex2darray_01.html [ Failure ]
crbug.com/1215695 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fbocolorbuffer/tex3d_00.html [ Failure ]
crbug.com/1215695 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fbocolorbuffer/tex3d_01.html [ Failure ]
crbug.com/1215695 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fbocolorbuffer/texcube_00.html [ Failure ]
crbug.com/1215695 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fbocolorbuffer/texcube_01.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/recreate_color_00.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/recreate_color_01.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/recreate_color_02.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/recreate_color_04.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/recreate_color_05.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/recreate_color_06.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/resize_00.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/resize_01.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/resize_02.html [ Failure ]
crbug.com/1215698 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/fborender/resize_03.html [ Failure ]
crbug.com/1221362 [ chromeos chromeos-board-amd64-generic ] conformance2/rendering/blitframebuffer-filter-outofbounds.html [ Failure ]
crbug.com/1223542 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/framebufferblit/rect_03.html [ Failure ]
crbug.com/1223542 [ chromeos chromeos-board-amd64-generic ] deqp/functional/gles3/framebufferblit/rect_04.html [ Failure ]
crbug.com/1238075 [ chromeos chromeos-board-amd64-generic ] conformance/rendering/gl-scissor-test.html [ Failure ]
crbug.com/1241179 [ chromeos chromeos-board-amd64-generic passthrough ] conformance2/extensions/ext-texture-norm16.html [ Failure ]
crbug.com/1399117 [ chromeos chromeos-board-amd64-generic passthrough ] WebglExtension_WEBGL_provoking_vertex [ Skip ]
# ANGLE disallows WEBGL_clip_cull_distance if the underlying GL extension doesn't support requirements for number of distances.
crbug.com/angleproject/7904 [ chromeos chromeos-board-amd64-generic passthrough ] WebglExtension_WEBGL_clip_cull_distance [ Failure ]
# New extension tests failing on ChromeOS VM
crbug.com/angleproject/8315 [ chromeos chromeos-board-amd64-generic passthrough ] WebglExtension_EXT_render_snorm [ Failure ]
crbug.com/326755442 [ chromeos intel mesa_ge_21.0 passthrough ] conformance2/extensions/ext-render-snorm.html [ Failure ]
## Volteer ##
crbug.com/332743717 [ chromeos cros-chrome chromeos-board-volteer ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/40947854 [ chromeos cros-chrome chromeos-board-volteer ] conformance2/rendering/blitframebuffer-filter-outofbounds.html [ Failure ]
# Fragment position generation rounds incorrectly on intel line primitives.
crbug.com/40947858 [ chromeos intel passthrough ] deqp/functional/gles3/clipping.html [ Failure ]
##############################
# Linux Failures #
##############################
crbug.com/1399117 [ linux intel display-server-wayland no-passthrough ] WebglExtension_WEBGL_provoking_vertex [ Skip ]
# Failures on validating command decoder only; won't fix.
# Conflicting expectations to test that the
# "Expectations have no collisions" unittest works.
# Conflict when all conditions match
#[ linux nvidia-0x1 debug angle-opengl ] test-page-1.html [ Failure ]
#[ linux nvidia-0x1 debug angle-opengl ] test-page-1.html [ Failure ]
# Conflict when all conditions match (and different sets)
#[ linux nvidia-0x1 debug angle-opengl ] test-page-2.html [ Failure ]
#[ linux nvidia-0x1 debug angle-opengl amd ] test-page-2.html [ Failure ]
#[ mac nvidia-0x1 debug angle-opengl amd ] test-page-2.html [ Failure ]
# Conflict with one aspect not specified
#[ linux nvidia-0x1 debug ] test-page-3.html [ Failure ]
#[ linux nvidia-0x1 debug angle-opengl ] test-page-3.html [ Failure ]
# Conflict with one aspect not specified (in both conditions)
#[ linux nvidia-0x1 debug ] test-page-4.html [ Failure ]
#[ linux nvidia-0x1 debug ] test-page-4.html [ Failure ]
# Conflict even if the GPU is specified with a device ID
#[ linux nvidia-0x1 debug ] WebglExtension_test_5 [ Failure ]
#[ linux nvidia debug ] WebglExtension_test_5 [ Failure ]
# Test there are no conflicts between two different devices
#[ linux nvidia-0x1 debug ] WebglExtension_test_6 [ Failure ]
#[ linux nvidia-0x2 debug ] WebglExtension_test_6 [ Failure ]
# Test there are no conflicts between two devices with different vendors
#[ linux nvidia-0x1 debug ] WebglExtension_test_7 [ Failure ]
#[ linux amd-0x1 debug ] WebglExtension_test_7 [ Failure ]
# Conflicts if there is a device and nothing specified for the other's GPU vendors
#[ linux nvidia-0x1 debug ] WebglExtension_test_8 [ Failure ]
#[ linux debug ] WebglExtension_test_8 [ Failure ]
# Test no conflicts happen when only one aspect differs
#[ linux nvidia-0x1 debug angle-opengl ] WebglExtension_test_9 [ Failure ]
#[ win nvidia-0x1 debug angle-opengl ] WebglExtension_test_9 [ Failure ]
# Conflicts if between a generic os condition and a specific version
#[ highsierra nvidia debug angle-opengl ] WebglExtension_test_10 [ Failure ]
#[ mac nvidia debug angle-opengl ] WebglExtension_test_10 [ Failure ]
####################
# Fuchsia Failures #
####################
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] WebglExtension_WEBGL_compressed_texture_pvrtc [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] WebglExtension_WEBGL_provoking_vertex [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/context/context-attributes-alpha-depth-stencil-antialias.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/glsl/samplers/glsl-function-texture2dproj.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/gl-teximage.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/image-decoder-to-texture.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/tex-video-using-tex-unit-non-zero.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/texparameter-test.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/texture-active-bind-2.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/texture-active-bind.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/texture-srgb-upload.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance/textures/misc/texture-video-transparent.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/extensions/ext-disjoint-timer-query-webgl2.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/extensions/webgl-multi-draw-instanced-base-vertex-base-instance.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/extensions/webgl-stencil-texturing.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/misc/uninitialized-test-2.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/samplers/sampler-drawing-test.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/textures/misc/copy-texture-image-same-texture.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] conformance2/transform_feedback/transform_feedback.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] deqp/functional/gles3/fbomultisample.2_samples.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] deqp/functional/gles3/fbomultisample.4_samples.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] deqp/functional/gles3/fborender/recreate_color_01.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] deqp/functional/gles3/fborender/recreate_color_02.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] deqp/functional/gles3/fborender/resize_01.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] deqp/functional/gles3/fborender/resize_02.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 ] deqp/functional/gles3/shaderoperator/unary_operator_00.html [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 passthrough ] WebglExtension_EXT_render_snorm [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 passthrough ] WebglExtension_EXT_texture_mirror_clamp_to_edge [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 passthrough ] WebglExtension_EXT_texture_norm16 [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 passthrough ] WebglExtension_WEBGL_blend_func_extended [ Failure ]
crbug.com/352104898 [ fuchsia fuchsia-board-qemu-x64 passthrough angle-swiftshader ] WebglExtension_WEBGL_render_shared_exponent [ Failure ]
###############################
# New failures in WebGL rolls #
###############################
# Roll WebGL d1b65aa..b934957.
crbug.com/1448567 [ android android-pixel-2 passthrough ] conformance2/transform_feedback/simultaneous_binding.html [ Failure ]
crbug.com/1448570 [ android-pixel-4 angle-disabled no-passthrough ] conformance/extensions/webgl-compressed-texture-etc.html [ Failure ]
crbug.com/1448570 [ android-pixel-4 angle-disabled no-passthrough ] conformance/extensions/webgl-compressed-texture-etc1.html [ Failure ]
crbug.com/1448570 [ android android-pixel-2 angle-disabled no-passthrough ] conformance/extensions/webgl-compressed-texture-etc.html [ Failure ]
crbug.com/1448570 [ android android-pixel-2 angle-disabled no-passthrough ] conformance/extensions/webgl-compressed-texture-etc1.html [ Failure ]
crbug.com/1448569 [ win angle-d3d11 ] conformance2/glsl3/texture-bias.html [ Failure ]
crbug.com/332743717 [ android android-pixel-4 ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/332743717 [ linux ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/332743717 [ mac intel angle-opengl ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/332743717 [ chromeos chromeos-board-amd64-generic ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/332743717 [ android android-pixel-2 ] conformance2/canvas/drawingbuffer-storage-test.html [ Failure ]
crbug.com/332743717 [ win intel-0x4680 ] conformance2/query/occlusion-query-scissor.html [ Failure ]
#######################################################################
# Automated Entries After This Point - Do Not Manually Add Below Here #
#######################################################################
|