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 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305
|
# *** WARNING! ***
# Modification to this file only take effect after running
# generate-wrappers-and-manifest.py
# See python/mozbuild/mozbuild/mozinfo.py for incoming data.
##########
# android_version strings
# https://en.wikipedia.org/wiki/Android_version_history
# * Android 13.0: 33 (pixel 5 phones)
# * Android 14.0: 34 (samsung a55 phones)
##########
# os_version strings
# https://msdn.microsoft.com/en-us/library/windows/desktop/ms724832%28v=vs.85%29.aspx
# * Windows 10: 10.0
[DEFAULT]
# Bug 1799213
prefs = "media.seamless-looping-video=false"
["generated/test_..__always-fail.html"]
fail-if = ["true"]
####################
# Failures from 2024-04 CTS update
["generated/test_2_conformance2__attribs__gl-bindAttribLocation-aliasing-inactive.html"]
fail-if = [
"os == 'linux'",
"os == 'mac'",
"os == 'android' && android_version == '33'",
]
["generated/test_2_conformance2__attribs__gl-vertex-attrib-i-render.html"]
# timed out crash
skip-if = ["os == 'win'"]
["generated/test_2_conformance2__attribs__gl-vertex-attrib.html"]
# random timed out
skip-if = ["os == 'win'"]
["generated/test_2_conformance2__buffers__get-buffer-sub-data.html"]
skip-if = ["os == 'win'"]
["generated/test_2_conformance2__context__context-attributes-depth-stencil-antialias-obeyed.html"]
fail-if = [
"os == 'android'",
"os == 'linux' && os_version == '18.04'",
"os == 'linux' && os_version == '22.04'",
]
["generated/test_2_conformance2__extensions__ext-color-buffer-float.html"]
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug",
]
["generated/test_2_conformance2__extensions__ext-texture-norm16.html"]
skip-if = ["os == 'android'"] #Bug 1658801
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'mac' && os_version == '15.30' && arch == 'aarch64'",
"os == 'linux'",
]
["generated/test_2_conformance2__extensions__ovr_multiview2.html"]
# Windows failure: ANGLE bug: FAIL #extension GL_OVR_multiview must be forbidden.
# Because we have to enable multiview1 to get ANGLE to emit gl_ViewID_OVR.
fail-if = ["os == 'win'"]
skip-if = ["os == 'android'"]
#[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
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Process uptime: not available
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Thread 11 (crashed)
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - 0 libxul.so!mozilla::gfx::Log<1, mozilla::gfx::CriticalLogger>::WriteLog(std::__ndk1::basic_string<char, std::__ndk1::char_traits<char>, std::__ndk1::allocator<char> > const&) [Logging.h:c51d1038215eefa91552a819433870898cf05864 : 747 + 0x20]
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r0 = 0x00000000 r1 = 0xd1c1aad6 r2 = 0xd1c1aa7a r3 = 0x000002eb
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r4 = 0xd1c1aa7a r5 = 0x000002eb r6 = 0xefbad1b8 r7 = 0xd4980878
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r8 = 0xd1d9b6ee r9 = 0xd49808c8 r10 = 0xefbad1b8 r12 = 0xd4980388
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - fp = 0xefbad1b8 sp = 0xd4980870 lr = 0xce1e306d pc = 0xce1e34d4
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Found by: given as instruction pointer in context
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - 1 libxul.so!mozilla::gfx::Log<1, mozilla::gfx::CriticalLogger>::Flush() [Logging.h:c51d1038215eefa91552a819433870898cf05864 : 279 + 0x5]
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r4 = 0xd49808d4 r5 = 0xd49808e0 r6 = 0xefbad1b8 r7 = 0xd49808b0
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r8 = 0xd1d9b6ee r9 = 0xd49808c8 r10 = 0xefbad1b8 fp = 0xefbad1b8
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - sp = 0xd4980880 lr = 0xce1e3435 pc = 0xce1e3435
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Found by: call frame info
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - 2 libxul.so!mozilla::gfx::Log<1, mozilla::gfx::CriticalLogger>::~Log() [Logging.h:c51d1038215eefa91552a819433870898cf05864 : 272 + 0x9]
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r4 = 0xd49808d4 r5 = 0xd398c10c r6 = 0x00000501 r7 = 0xd49808c0
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r8 = 0xd1d9b6ee r9 = 0xd49808c8 r10 = 0xefbad1b8 fp = 0xefbad1b8
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - sp = 0xd49808b8 lr = 0xce1e30f7 pc = 0xce1e30f7
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Found by: call frame info
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - 3 libxul.so!mozilla::gl::GLContext::AfterGLCall_Debug(char const*) const [GLContext.cpp:c51d1038215eefa91552a819433870898cf05864 : 2896 + 0x23]
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r4 = 0xd49808d4 r5 = 0xd398c10c r6 = 0x00000501 r7 = 0xd49809b0
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r8 = 0xd1d9b6ee r9 = 0xd49808c8 r10 = 0xefbad1b8 fp = 0xefbad1b8
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - sp = 0xd49808c8 lr = 0xce265007 pc = 0xce265007
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Found by: call frame info
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - 4 libxul.so!mozilla::gl::GLContext::fFramebufferTextureMultiview(unsigned int, unsigned int, unsigned int, int, int, int) const [GLContext.h:c51d1038215eefa91552a819433870898cf05864 : 3295 + 0x9]
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r4 = 0xb421f000 r5 = 0xefbad1b8 r6 = 0xef838734 r7 = 0xd49809f0
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - r8 = 0x0000000b r9 = 0x00008ce0 r10 = 0x00008d40 fp = 0xefbad1b8
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - sp = 0xd49809b8 lr = 0xcecf534f pc = 0xcecf534f
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - Found by: call frame info
#[task 2020-01-06T23:47:51.786Z] 23:47:51 INFO - 5 libxul.so!mozilla::WebGLFBAttachPoint::DoAttachment(mozilla::gl::GLContext*) const [WebGLFramebuffer.cpp:c51d1038215eefa91552a819433870898cf05864 : 247 + 0xf]
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r4 = 0x00000006 r5 = 0xb4247ee0 r6 = 0xefbad1b8 r7 = 0xd4980a28
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r8 = 0xd4980aa0 r9 = 0xb421f000 r10 = 0xb4247ee0 fp = 0xefbad1b8
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - sp = 0xd49809f8 lr = 0xcecf4d35 pc = 0xcecf4d35
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - Found by: call frame info
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - 6 libxul.so!mozilla::WebGLFramebuffer::FramebufferAttach(unsigned int, mozilla::webgl::FbAttachInfo const&) [WebGLFramebuffer.cpp:c51d1038215eefa91552a819433870898cf05864 : 0 + 0x5]
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r4 = 0xb4247e40 r5 = 0xb4247e4c r6 = 0x00008ce0 r7 = 0xd4980a58
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r8 = 0xd4980aa0 r9 = 0xb42ef82c r10 = 0xb4247ee0 fp = 0xefbad1b8
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - sp = 0xd4980a30 lr = 0xcecf7131 pc = 0xcecf7131
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - Found by: call frame info
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - 7 libxul.so!mozilla::WebGLContext::FramebufferAttach(unsigned int, unsigned int, StrongGLenum<TexTargetDetails>, mozilla::webgl::FbAttachInfo const&) const [WebGLContextGL.cpp:c51d1038215eefa91552a819433870898cf05864 : 555 + 0x9]
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r4 = 0xb42ef800 r5 = 0xd4980aa0 r6 = 0xefbad1b8 r7 = 0xd4980a90
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r8 = 0x00008ce0 r9 = 0xd1d959b9 r10 = 0xb4247e40 fp = 0x0000000e
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - sp = 0xd4980a60 lr = 0xcece1b89 pc = 0xcece1b89
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - Found by: call frame info
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - 8 libxul.so!mozilla::WebGLContext::FramebufferTextureMultiview(unsigned int, unsigned int, mozilla::WebGLTexture*, int, int, int) const [WebGLContextGL.cpp:c51d1038215eefa91552a819433870898cf05864 : 642 + 0x13]
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r4 = 0xb81c5000 r5 = 0xefbad1b8 r6 = 0xb42ef800 r7 = 0xd4980ad8
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r8 = 0x00008ce0 r9 = 0xd4980aa0 r10 = 0x00008ca9 fp = 0x00000006
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - sp = 0xd4980a98 lr = 0xcece2021 pc = 0xcece2021
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - Found by: call frame info
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - 9 libxul.so!mozilla::WebGLExtensionMultiview::FramebufferTextureMultiviewOVR(unsigned int, unsigned int, mozilla::WebGLTexture*, int, int, int) const [WebGLExtensions.cpp:c51d1038215eefa91552a819433870898cf05864 : 122 + 0xf]
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r4 = 0x00000000 r5 = 0xbd5c3aac r6 = 0xefbad1b8 r7 = 0xd4980b18
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - r8 = 0xb81c5000 r9 = 0x00008ce0 r10 = 0x00008ca9 fp = 0xd4980b9c
#[task 2020-01-06T23:47:51.792Z] 23:47:51 INFO - sp = 0xd4980ae0 lr = 0xcecf189d pc = 0xcecf189d
#[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'"]
["generated/test_2_conformance2__extensions__ovr_multiview2_draw_buffers.html"]
skip-if = ["os == 'android'"]
# https://bugzilla.mozilla.org/show_bug.cgi?id=1810021
#
# Currently getting failures like the following:
#
# > ```
# > the right edge of view 0 of color attachment 1 should be untouched
# > the left edge of view 1 of color attachment 1 should be untouched
# > the right edge of view 1 of color attachment 1 should be untouched
# > the left edge of view 2 of color attachment 1 should be untouched
# > the right edge of view 2 of color attachment 1 should be untouched
# > the left edge of view 3 of color attachment 1 should be untouched
# > the right edge of view 0 of color attachment 2 should be untouched
# > the left edge of view 1 of color attachment 2 should be untouched
# > the right edge of view 1 of color attachment 2 should be untouched
# > the left edge of view 2 of color attachment 2 should be untouched
# > the right edge of view 2 of color attachment 2 should be untouched
# > the left edge of view 3 of color attachment 2 should be untouched
# > ```
fail-if = ["os == 'win' && debug"]
["generated/test_2_conformance2__extensions__ovr_multiview2_instanced_draw.html"]
skip-if = ["os == 'android'"]
["generated/test_2_conformance2__extensions__ovr_multiview2_single_view_operations.html"]
skip-if = ["os == 'android'"]
["generated/test_2_conformance2__extensions__ovr_multiview2_transform_feedback.html"]
fail-if = ["os == 'android' && android_version == '33'"]
["generated/test_2_conformance2__extensions__required-extensions.html"]
# has_etc1 == has_etc should be true. Was false
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' && 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'"]
["generated/test_2_conformance2__glsl3__matrix-row-major-dynamic-indexing.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
########################################################################
# Complicated
["generated/test_2_conformance2__glsl3__short-circuiting-in-loop-condition.html"]
["generated/test_2_conformance2__glsl3__switch-case.html"]
# https://bugzilla.mozilla.org/show_bug.cgi?id=1725442
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'"]
####################
# Bugs surfaced during fx106 CTS update
["generated/test_2_conformance2__glsl3__tricky-loop-conditions.html"]
fail-if = ["os == 'win'"]
["generated/test_2_conformance2__glsl3__uniform-location-length-limits.html"]
# time out crash
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' && 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'",
]
["generated/test_2_conformance2__misc__expando-loss-2.html"]
skip-if = [
"os == 'android'",
"os == 'linux'",
]
["generated/test_2_conformance2__misc__uninitialized-test-2.html"]
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'win'",
"os == 'android' && android_version == '34'",
]
["generated/test_2_conformance2__offscreencanvas__offscreencanvas-sync.html"]
# Timeout
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64' && opt",
"os == 'mac' && os_version == '15.30' && arch == 'aarch64' && opt",
]
["generated/test_2_conformance2__programs__gl-get-frag-data-location.html"]
# gl.getFragDataLocation(programEs2, 'gl_FragColor') should be -1. Was 0.
fail-if = ["os == 'android' && android_version == '33'"]
["generated/test_2_conformance2__query__occlusion-query-scissor.html"]
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"]
["generated/test_2_conformance2__reading__format-r11f-g11f-b10f.html"]
["generated/test_2_conformance2__reading__read-pixels-from-fbo-test.html"]
# Test timed out
# called finish() multiple times
# (broken test)
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"]
["generated/test_2_conformance2__renderbuffers__multisample-draws-between-blits.html"]
# "whole thing" and more
fail-if = [
"os == 'linux' && os_version == '18.04'",
"os == 'linux' && os_version == '22.04'",
]
["generated/test_2_conformance2__renderbuffers__multisampled-depth-renderbuffer-initialization.html"]
####################
# failure on OSX
["generated/test_2_conformance2__renderbuffers__multisampled-renderbuffer-initialization.html"]
["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"]
["generated/test_2_conformance2__rendering__blitframebuffer-filter-srgb.html"]
fail-if = [
"os == 'linux' && os_version == '18.04'",
"os == 'linux' && os_version == '22.04'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'mac' && os_version == '15.30' && arch == 'aarch64'",
]
["generated/test_2_conformance2__rendering__blitframebuffer-multisampled-readbuffer.html"]
fail-if = [
"os == 'linux' && os_version == '18.04'",
"os == 'linux' && os_version == '22.04'",
]
["generated/test_2_conformance2__rendering__blitframebuffer-resolve-to-back-buffer.html"]
# ABORT_ON_ERROR
skip-if = ["true"]
["generated/test_2_conformance2__rendering__clipping-wide-points.html"]
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 == 'win'",
"os == 'android' && android_version == '34'",
]
# -
# Platform-specific
["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'"]
["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'"]
["generated/test_2_conformance2__rendering__framebuffer-render-to-layer.html"]
# pixel 0,0 channel 2 was 51 expected 63 +/- 9
fail-if = [
"os == 'android'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'mac' && os_version == '15.30' && arch == 'aarch64'",
]
########################################################################
########################################################################
# Android
["generated/test_2_conformance2__rendering__framebuffer-texture-level1.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
skip-if = ["os == 'linux'"]
# Crash in `swrast_dri.so!st_finalize_texture`
["generated/test_2_conformance2__rendering__framebuffer-to-texture.html"]
# checkFramebufferStatus expected: FRAMEBUFFER_COMPLETE. Was FRAMEBUFFER_INCOMPLETE_ATTACHMENT
fail-if = [
"os == 'linux' && os_version == '18.04'",
"os == 'linux' && os_version == '22.04'",
]
["generated/test_2_conformance2__rendering__line-rendering-quality.html"]
fail-if = [
"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 == '18.04'",
"os == 'linux' && os_version == '22.04'",
]
["generated/test_2_conformance2__rendering__texture-switch-performance.html"]
# Orange on OSX+debug
skip-if = ["true"]
["generated/test_2_conformance2__rendering__uniform-block-buffer-size.html"]
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
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - 0.0.0 Linux 4.4.56-g594d847d09a1 #1 SMP PREEMPT Thu Oct 26 22:34:08 UTC 2017 armv8l
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - CPU: arm
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - ARMv1 Qualcomm part(0x51008010) features: half,thumb,fastmult,vfpv2,edsp,neon,vfpv3,tls,vfpv4,idiva,idivt
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - 8 CPUs
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - GPU: UNKNOWN
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - Crash reason: SIGSEGV /SEGV_MAPERR
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - Crash address: 0x0
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - Process uptime: not available
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - Thread 11 (crashed)
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - 0 libxul.so!mozilla::gfx::Log<1, mozilla::gfx::CriticalLogger>::WriteLog(std::__ndk1::basic_string<char, std::__ndk1::char_traits<char>, std::__ndk1::allocator<char> > const&) [Logging.h:ce11b73ab52b1e6d7d79f69ff30aba01f8a267dd : 747 + 0x20]
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - r0 = 0x00000000 r1 = 0xcc41aad6 r2 = 0xcc41aa7a r3 = 0x000002eb
# [task 2020-01-07T01:44:09.858Z] 01:44:09 INFO - r4 = 0xcc41aa7a r5 = 0x000002eb r6 = 0xea51b1b8 r7 = 0xcf180908
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r8 = 0xcc594f91 r9 = 0xcf180958 r10 = 0xea51b1b8 r12 = 0xcf180418
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - fp = 0x00000000 sp = 0xcf180900 lr = 0xc89e306d pc = 0xc89e34d4
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - Found by: given as instruction pointer in context
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - 1 libxul.so!mozilla::gfx::Log<1, mozilla::gfx::CriticalLogger>::Flush() [Logging.h:ce11b73ab52b1e6d7d79f69ff30aba01f8a267dd : 279 + 0x5]
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r4 = 0xcf180964 r5 = 0xcf180970 r6 = 0xea51b1b8 r7 = 0xcf180940
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r8 = 0xcc594f91 r9 = 0xcf180958 r10 = 0xea51b1b8 fp = 0x00000000
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - sp = 0xcf180910 lr = 0xc89e3435 pc = 0xc89e3435
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - Found by: call frame info
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - 2 libxul.so!mozilla::gfx::Log<1, mozilla::gfx::CriticalLogger>::~Log() [Logging.h:ce11b73ab52b1e6d7d79f69ff30aba01f8a267dd : 272 + 0x9]
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r4 = 0xcf180964 r5 = 0xce18c10c r6 = 0x00000501 r7 = 0xcf180950
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r8 = 0xcc594f91 r9 = 0xcf180958 r10 = 0xea51b1b8 fp = 0x00000000
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - sp = 0xcf180948 lr = 0xc89e30f7 pc = 0xc89e30f7
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - Found by: call frame info
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - 3 libxul.so!mozilla::gl::GLContext::AfterGLCall_Debug(char const*) const [GLContext.cpp:ce11b73ab52b1e6d7d79f69ff30aba01f8a267dd : 2896 + 0x23]
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r4 = 0xcf180964 r5 = 0xce18c10c r6 = 0x00000501 r7 = 0xcf180a40
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r8 = 0xcc594f91 r9 = 0xcf180958 r10 = 0xea51b1b8 fp = 0x00000000
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - sp = 0xcf180958 lr = 0xc8a65007 pc = 0xc8a65007
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - Found by: call frame info
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - 4 libxul.so!mozilla::gl::GLContext::fBindBufferRange(unsigned int, unsigned int, unsigned int, long, long) [GLContext.h:ce11b73ab52b1e6d7d79f69ff30aba01f8a267dd : 2773 + 0x9]
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r4 = 0xade7a000 r5 = 0xea51b1b8 r6 = 0xeaf37d84 r7 = 0xcf180a80
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r8 = 0x00000003 r9 = 0x00000001 r10 = 0x00008a11 fp = 0x00000000
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - sp = 0xcf180a48 lr = 0xc94da363 pc = 0xc94da363
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - Found by: call frame info
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - 5 libxul.so!mozilla::WebGLContext::BindBufferRangeImpl(unsigned int, unsigned int, mozilla::WebGLBuffer*, long long, long long) [WebGLContextBuffers.cpp:ce11b73ab52b1e6d7d79f69ff30aba01f8a267dd : 223 + 0x13]
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r4 = 0xaed64120 r5 = 0x00008a11 r6 = 0xadecc800 r7 = 0xcf180ac0
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r8 = 0x00000001 r9 = 0xea51b1b8 r10 = 0x0000000f fp = 0x00000000
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - sp = 0xcf180a88 lr = 0xc94da255 pc = 0xc94da255
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - Found by: call frame info
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - 6 libxul.so!mozilla::WebGLContext::BindBufferRange(unsigned int, unsigned int, mozilla::WebGLBuffer*, long long, long long) [WebGLContext.h:ce11b73ab52b1e6d7d79f69ff30aba01f8a267dd : 1053 + 0x13]
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r4 = 0xaed64120 r5 = 0x00008a11 r6 = 0xadecc800 r7 = 0xcf180b08
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r8 = 0x00000001 r9 = 0x00000000 r10 = 0x00000000 fp = 0xea51b1b8
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - sp = 0xcf180ac8 lr = 0xc9251fa3 pc = 0xc9251fa3
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - Found by: call frame info
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - 7 libxul.so!mozilla::dom::WebGL2RenderingContext_Binding::bindBufferRange(JSContext*, JS::Handle<JSObject*>, void*, JSJitMethodCallArgs const&) [WebGL2RenderingContextBinding.cpp: : 9357 + 0x17]
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r4 = 0x00000000 r5 = 0xc3009800 r6 = 0x0000000f r7 = 0xcf180b70
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - r8 = 0xadecc800 r9 = 0xea51b1b8 r10 = 0xcf180b9c fp = 0x00000341
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - sp = 0xcf180b10 lr = 0xc9251e79 pc = 0xc9251e79
# [task 2020-01-07T01:44:09.866Z] 01:44:09 INFO - Found by: call frame info
####################
["generated/test_2_conformance2__state__gl-get-calls.html"]
fail-if = [
"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"]
# Also fails on Linux still?
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"]
["generated/test_2_conformance2__textures__canvas__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"]
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"]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r16f-red-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r16f-red-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r32f-red-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r8-red-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-r8ui-red_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg16f-rg-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg16f-rg-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg32f-rg-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg8-rg-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rg8ui-rg_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"]
fail-if = ["true"]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb16f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb16f-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb32f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb565-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb5_a1-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb8-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb9_e5-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgb9_e5-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba16f-rgba-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba16f-rgba-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba32f-rgba-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba4-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba8-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-srgb8-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__canvas_sub_rectangle__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"]
fail-if = ["true"]
["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-r16f-red-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-r16f-red-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-r32f-red-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-r8-red-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-r8ui-red_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rg16f-rg-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rg16f-rg-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rg32f-rg-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rg8-rg-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rg8ui-rg_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"]
fail-if = ["true"]
["generated/test_2_conformance2__textures__image__tex-3d-rgb16f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb16f-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb32f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb565-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb5_a1-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb8-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb9_e5-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgb9_e5-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgba32f-rgba-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgba4-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgba8-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-srgb8-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__image__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["generated/test_2_conformance2__textures__image_data__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"]
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"]
["generated/test_2_conformance2__textures__misc__copy-texture-cube-map-bug.html"]
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]
# [task 2019-12-27T02:30:56.787Z] 02:30:56 INFO - GECKO(1114) | #03: mozilla::gl::GLScreenBuffer::Resize(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&) [gfx/gl/GLScreenBuffer.cpp:513]
# [task 2019-12-27T02:30:56.787Z] 02:30:56 INFO - GECKO(1114) | #04: mozilla::WebGLContext::PresentScreenBuffer(mozilla::gl::GLScreenBuffer*) [dom/canvas/WebGLContext.cpp:1430]
# [task 2019-12-27T02:30:56.788Z] 02:30:56 INFO - GECKO(1114) | #05: mozilla::WebGLContextUserData::PreTransactionCallback(void*) [dom/canvas/WebGLContext.cpp:1154]
########################################################################
########################################################################
# Mac
["generated/test_2_conformance2__textures__misc__copy-texture-image-same-texture.html"]
skip-if = [
"os == 'linux'",
"os == 'win'",
"os == 'android' && android_version == '34'",
]
["generated/test_2_conformance2__textures__misc__generate-mipmap-with-large-base-level.html"]
# getError expected: NO_ERROR. Was OUT_OF_MEMORY
["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 == 'android' && android_version == '33'",
"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 == 'linux' && debug",
"os == 'android' && android_version == '34' && debug",
]
["generated/test_2_conformance2__textures__misc__origin-clean-conformance-offscreencanvas.html"]
skip-if = ["true"]
####################
# Timing out
["generated/test_2_conformance2__textures__misc__tex-3d-mipmap-levels-intel-bug.html"]
fail-if = [
"win11_2009",
"os == 'win' && os_version == '11.26100' && processor == 'x86'",
"os == 'win' && os_version == '11.26100' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__misc__tex-base-level-bug.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'mac' && os_version == '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"]
["generated/test_2_conformance2__textures__misc__tex-image-with-bad-args-from-dom-elements.html"]
skip-if = [
"os == 'win'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'android' && processor == 'aarch64'", # Bug 1687073
]
["generated/test_2_conformance2__textures__misc__tex-input-validation.html"]
skip-if = [
"os == 'android'",
"os == 'win'",
]
["generated/test_2_conformance2__textures__misc__tex-mipmap-levels.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'mac' && os_version == '15.30' && arch == 'aarch64'",
"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' && 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' && 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"]
####################################################
# Bugs
["generated/test_2_conformance2__textures__misc__tex-unpack-params.html"]
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64' && debug",
]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'mac' && os_version == '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"]
["generated/test_2_conformance2__textures__svg_image__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"]
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"]
["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-r16f-red-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-r16f-red-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-r32f-red-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-r8-red-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-r8ui-red_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rg16f-rg-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rg16f-rg-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rg32f-rg-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rg8-rg-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rg8ui-rg_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"]
fail-if = ["true"]
["generated/test_2_conformance2__textures__video__tex-3d-rgb16f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb16f-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb32f-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb565-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb565-rgb-unsigned_short_5_6_5.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb5_a1-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb8-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb8ui-rgb_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb9_e5-rgb-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgb9_e5-rgb-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgba16f-rgba-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgba16f-rgba-half_float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgba32f-rgba-float.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgba4-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgba8-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-rgba8ui-rgba_integer-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-srgb8-rgb-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__video__tex-3d-srgb8_alpha8-rgba-unsigned_byte.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
]
["generated/test_2_conformance2__textures__webgl_canvas__tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html"]
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"]
["generated/test_2_conformance2__transform_feedback__too-small-buffers.html"]
# ABORT_ON_ERROR
skip-if = ["true"]
["generated/test_2_conformance2__transform_feedback__transform_feedback.html"]
# Linux: Assertion failure: [GFX1]: void mozilla::gl::GLContext::fTransformFeedbackVaryings(GLuint, GLsizei, const GLchar *const *, GLenum): Generated unexpected GL_INVALID_OPERATION error
# Android: void mozilla::gl::GLContext::fDeleteTransformFeedbacks(GLsizei, const GLuint *): Generated unexpected GL_INVALID_OPERATION error.
skip-if = [
"os == 'linux'",
"os == 'android' && debug",
]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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"]
["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'"]
["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'"]
["generated/test_2_conformance__context__context-attribute-preserve-drawing-buffer.html"]
["generated/test_2_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"]
# contextAttribs.antialias should be true. Was false
fail-if = [
"os == 'linux' && os_version == '18.04'",
"os == 'linux' && os_version == '22.04'",
]
["generated/test_2_conformance__extensions__webgl-compressed-texture-astc.html"]
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' && 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"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-bvec3.html"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-bvec4.html"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-ivec2.html"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-ivec3.html"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-ivec4.html"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-vec-mat-corner-cases.html"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"]
# skip this test because finish() was called multiple times
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'win'",
"os == 'linux'",
"os == 'android'",
]
["generated/test_2_conformance__glsl__constructors__glsl-construct-vec2.html"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-vec3.html"]
["generated/test_2_conformance__glsl__constructors__glsl-construct-vec4.html"]
["generated/test_2_conformance__glsl__misc__fragcolor-fragdata-invariant.html"]
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'mac' && os_version == '15.30' && arch == 'aarch64'",
] # [unexpected fragment shader compile status] (expected: true) Declaring both gl_FragColor and gl_FragData invariant should succeed.
########################################################################
########################################################################
# Win
["generated/test_2_conformance__glsl__misc__shader-uniform-packing-restrictions.html"]
["generated/test_2_conformance__limits__gl-line-width.html"]
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
]
["generated/test_2_conformance__misc__bad-arguments-test.html"]
# skip because some result logged after SimpleTest.finish()
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'win'",
]
["generated/test_2_conformance__misc__type-conversion-test.html"]
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug",
]
["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
skip-if = [
"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'"]
["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"]
["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"]
["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"]
["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'"]
["generated/test_2_conformance__ogles__GL__struct__struct_025_to_032.html"]
# application crashed [@ nvoglv32.dll + 0x90b445]
skip-if = ["os == 'win'"]
["generated/test_2_conformance__rendering__bind-framebuffer-flush-bug.html"]
["generated/test_2_conformance__rendering__blending.html"]
fail-if = ["os == 'android' && android_version == '33'"]
["generated/test_2_conformance__rendering__gl-scissor-test.html"]
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 == '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"]
["generated/test_2_conformance__rendering__preservedrawingbuffer-leak.html"]
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' && processor == 'x86_64'"]
skip-if = [
"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"]
["generated/test_2_conformance__textures__misc__copy-tex-image-2d-formats.html"]
# Assertion: ""GFX: We should have caught all other errors"" in WebGLTextureUpload.cpp
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
]
["generated/test_2_conformance__textures__misc__cube-map-uploads-out-of-order.html"]
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
]
["generated/test_2_conformance__textures__misc__mipmap-fbo.html"]
["generated/test_2_conformance__textures__misc__origin-clean-conformance-offscreencanvas.html"]
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"]
["generated/test_2_conformance__textures__misc__tex-image-and-sub-image-2d-with-array-buffer-view.html"]
["generated/test_2_conformance__textures__misc__tex-video-using-tex-unit-non-zero.html"]
skip-if = [
"os == 'win'",
"os == 'android' && debug",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64' && !debug",
]
["generated/test_2_conformance__textures__misc__texture-corner-case-videos.html"]
# Timeout. Bug 1599937
skip-if = [
"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'"]
["generated/test_2_conformance__textures__misc__texture-size-limit.html"]
# https://bugzilla.mozilla.org/show_bug.cgi?id=1657084
# Really slow on ASAN (after driver update?), likely due to ASAN's perf impact on the huge allocations in this test.
skip-if = ["os == 'linux' && asan"]
########################################################################
# Global
["generated/test_2_conformance__textures__misc__texture-size.html"]
# https://bugzilla.mozilla.org/show_bug.cgi?id=1657084
# Really slow on ASAN (after driver update?), likely due to ASAN's perf impact on the huge allocations in this test.
skip-if = [
"os == 'linux' && asan",
"os == 'win'",
]
["generated/test_2_conformance__textures__misc__texture-srgb-upload.html"]
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' && 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"]
["generated/test_2_conformance__textures__misc__video-rotation.html"]
# Ditto
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'",
]
["generated/test_conformance__attribs__gl-bindAttribLocation-aliasing.html"]
# OOM crash
skip-if = ["os == 'android'"]
["generated/test_conformance__attribs__gl-bindAttribLocation-matrix.html"]
# OOM crash
skip-if = ["os == 'android'"]
["generated/test_conformance__canvas__drawingbuffer-hd-dpi-test.html"]
# Crashes
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' && 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'"]
["generated/test_conformance__context__context-attributes-alpha-depth-stencil-antialias.html"]
# Asserts on linux debug. Crashes on Android.
skip-if = [
"os == 'linux'",
"os == 'android'",
]
# should be 0,0,0,255
fail-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug && !swgl",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64' && debug && !swgl",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64' && debug && !swgl",
]
["generated/test_conformance__context__context-creation.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__context__context-eviction-with-garbage-collection.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__context__context-release-upon-reload.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__context__context-release-with-workers.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__context__context-size-change.html"]
skip-if = ["os == 'win'"]
["generated/test_conformance__extensions__angle-instanced-arrays.html"]
skip-if = ["os == 'mac' && os_version == '10.15'"]
["generated/test_conformance__extensions__ext-sRGB.html"]
fail-if = ["os == 'android' && android_version == '33'"]
["generated/test_conformance__extensions__oes-texture-float-with-image-data.html"]
["generated/test_conformance__extensions__oes-texture-float-with-video.html"]
# Timeout
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'"]
["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' && android_version == '34'"]
["generated/test_conformance__glsl__bugs__array-of-struct-with-int-first-position.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__compare-loop-index-to-uniform.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__complex-glsl-does-not-crash.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__conditional-discard-in-loop.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__conditional-discard-optimization.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__floored-division-accuracy.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__fragcoord-linking-bug.html"]
# application crashed [@ jemalloc_crash]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__gl-fragcoord-multisampling-bug.html"]
# application crashed [@ jemalloc_crash]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__logic-inside-block-without-braces.html"]
# application crashed [@ MustSkipMarking<JSObject*>]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__long-expressions-should-not-crash.html"]
# Android: Crashes sometimes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__modulo-arithmetic-accuracy.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__multiplication-assignment.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__nested-functions-should-not-crash.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__nested-loops-with-break-and-continue.html"]
# application crashed [@ jemalloc_crash]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__pow-of-small-constant-in-user-defined-function.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__qualcomm-crash.html"]
# application crashed [@ jemalloc_crash]
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 == 'linux'",
"os == 'android'",
]
["generated/test_conformance__glsl__bugs__sequence-operator-evaluation-order.html"]
# application crashed [@ jemalloc_crash]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__bugs__struct-constructor-highp-bug.html"]
# application crashed [@ jemalloc_crash]
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 == 'linux'",
]
["generated/test_conformance__glsl__bugs__uniforms-should-not-lose-values.html"]
# application crashed [@ jemalloc_crash]
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' && 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 == '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 == '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 == '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'"]
["generated/test_conformance__glsl__constructors__glsl-construct-ivec3.html"]
# application crashed [@ ParseOperand::GetLogicalSize() const + 0x4]
# application crashed [@ jemalloc_crash] on Android
skip-if = [
"os == 'linux'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'android'",
]
["generated/test_conformance__glsl__constructors__glsl-construct-ivec4.html"]
# Assume crashes like ivec3
skip-if = [
"os == 'linux'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
]
["generated/test_conformance__glsl__constructors__glsl-construct-mat2.html"]
# Crashes on Linux 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'"]
["generated/test_conformance__glsl__constructors__glsl-construct-vec-mat-index.html"]
# skip this test because finish() was called multiple times
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'win'",
"os == 'linux'",
"os == 'android'",
]
["generated/test_conformance__glsl__constructors__glsl-construct-vec3.html"]
# Crashes
skip-if = ["os == 'linux'"]
["generated/test_conformance__glsl__constructors__glsl-construct-vec4.html"]
# Inferred crash from vec3 above.
skip-if = ["os == 'linux'"]
["generated/test_conformance__glsl__functions__glsl-function-atan.html"]
# Crashes
skip-if = ["os == 'linux'"]
["generated/test_conformance__glsl__functions__glsl-function-step-gentype.html"]
# application crashed [@ jemalloc_crash]
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' && 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'",
]
########################################################################
# "tst-linux{32,64}-spot-NNN" Slaves:
# Android 2.3 and Linux.
# Android: os == 'android'. (Not enough info to separate out 2.3)
# Linux: os == 'linux'.
["generated/test_conformance__glsl__misc__shader-uniform-packing-restrictions.html"]
# Frequent timeout on win7 and linux debug.
skip-if = [
"os == 'android'",
"os == 'linux' && debug",
]
["generated/test_conformance__glsl__samplers__glsl-function-texture2dproj.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__samplers__glsl-function-texture2dprojlod.html"]
# application crashed [@ jemalloc_crash]
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__variables__gl-fragcoord.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__glsl__variables__glsl-built-ins.html"]
# application crashed [@ jemalloc_crash]
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'"]
["generated/test_conformance__misc__bad-arguments-test.html"]
# skip because some result logged after SimpleTest.finish()
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'win'",
"os == 'linux'",
"os == 'android'",
]
["generated/test_conformance__misc__boolean-argument-conversion.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__misc__shader-precision-format.html"]
# application crashed [@ jemalloc_crash]
skip-if = ["os == 'android'"]
["generated/test_conformance__misc__type-conversion-test.html"]
fail-if = ["os == 'linux'"]
# Resets device on Android 2.3.
# Crashes on desktop Linux.
skip-if = [
"os == 'android'",
"os == 'linux'",
]
["generated/test_conformance__misc__uninitialized-test.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__misc__webgl-specific-stencil-settings.html"]
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'"]
["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"]
["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"]
["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"]
["generated/test_conformance__ogles__GL__abs__abs_001_to_006.html"]
# Test suite terminates, e.g. at pixel @ (412, 253 was [191,0,0,255] expected [98,0,0,255]. Bug 1897792
skip-if = ["os == 'android' && debug"]
["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'"]
["generated/test_conformance__ogles__GL__mat3__mat3_001_to_006.html"]
# Timeout on D3D11
skip-if = ["os == 'win'"]
["generated/test_conformance__ogles__GL__notEqual__notEqual_001_to_008.html"]
# Crashes
skip-if = ["os == 'linux'"]
["generated/test_conformance__ogles__GL__sign__sign_001_to_006.html"]
# Crashes
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 == 'linux'",
]
["generated/test_conformance__renderbuffers__framebuffer-object-attachment.html"]
# Crashes
skip-if = ["os == 'android'"]
########################################################################
########################################################################
# Linux
["generated/test_conformance__rendering__bind-framebuffer-flush-bug.html"]
["generated/test_conformance__rendering__blending.html"]
# Android 13.0 Pixel5 AArch64
# dom/canvas/test/webgl-conf/generated/test_conformance__rendering__blending.html | Expected [100,2,3,4], was [1,2,3,4]
fail-if = ["os == 'android' && android_version == '33'"]
["generated/test_conformance__rendering__clipping-wide-points.html"]
fail-if = ["os == 'linux'"]
["generated/test_conformance__rendering__framebuffer-switch.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__rendering__framebuffer-texture-switch.html"]
# Crashes
skip-if = ["os == 'android'"]
["generated/test_conformance__rendering__gl-scissor-test.html"]
fail-if = ["display == 'wayland'"]
skip-if = ["os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11'"] # Bug TBD
####################
# Tests requesting non-local network connections.
["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",
]
["generated/test_conformance__rendering__multisample-corruption.html"]
# application crashed [@ gldAttachDrawable + 0x9e0]. Also crash on Android.
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'android'",
"os == 'win'",
]
["generated/test_conformance__rendering__preservedrawingbuffer-leak.html"]
skip-if = ["os == 'win'"]
["generated/test_conformance__rendering__rendering-stencil-large-viewport.html"]
fail-if = [
"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)
# 02:52:43 INFO - GECKO(1000) | MEMORY STAT | vsize 945MB | vsizeMaxContiguous 98MB | residentFast 211MB | heapAllocated 42MB
# 02:52:43 INFO - GECKO(1000) | ERR: rx::SwapChain11::resetOffscreenColorBuffer(268): Could not create offscreen texture, 0x0505
# 02:52:43 INFO - GECKO(1000) | JavaScript warning: , line 0: Error: WebGL warning: screen->Resize failed. Losing context.
# 02:52:43 INFO - GECKO(1000) | WebGL(0EE8DC00)::ForceLoseContext
# 02:52:43 INFO - GECKO(1000) | [GFX1]: Invalid canvas front buffer or screen
# 02:52:44 INFO - GECKO(1000) | Assertion failure: [GFX1]: Invalid canvas front buffer or screen, at z:\build\build\src\obj-firefox\dist\include\mozilla/gfx/Logging.h:727
# 02:53:02 INFO - GECKO(1000) | #01: mozilla::gfx::Log<1,mozilla::gfx::CriticalLogger>::WriteLog(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) [gfx/2d/Logging.h:728]
# 02:53:02 INFO - GECKO(1000) | #02: mozilla::gfx::Log<1,mozilla::gfx::CriticalLogger>::Flush() [gfx/2d/Logging.h:286]
# 02:53:02 INFO - GECKO(1000) | #03: mozilla::layers::CanvasClientSharedSurface::UpdateRenderer(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>,mozilla::MaybeOneOf<mozilla::layers::ShareableCanvasRenderer *,mozilla::layers::AsyncCanvasRenderer *> &) [gfx/layers/client/CanvasClient.cpp:412]
# 02:53:02 INFO - GECKO(1000) | #04: mozilla::layers::CanvasClientSharedSurface::Update(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>,mozilla::layers::ShareableCanvasRenderer *) [gfx/layers/client/CanvasClient.cpp:381]
# 02:53:02 INFO - GECKO(1000) | #05: mozilla::layers::ShareableCanvasRenderer::UpdateCompositableClient() [gfx/layers/ShareableCanvasRenderer.cpp:237]
skip-if = [
"os == 'android'",
"os == 'win'",
"display == 'wayland'",
]
["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"]
["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"]
["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-alpha-alpha-unsigned_byte.html"]
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
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - 0.0.0 Linux 4.4.56-g594d847d09a1 #1 SMP PREEMPT Thu Oct 26 22:34:08 UTC 2017 armv8l
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - CPU: arm
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - ARMv1 Qualcomm part(0x51008010) features: half,thumb,fastmult,vfpv2,edsp,neon,vfpv3,tls,vfpv4,idiva,idivt
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - 8 CPUs
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - GPU: UNKNOWN
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Crash reason: SIGSEGV /SEGV_MAPERR
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Crash address: 0x0
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Process uptime: not available
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Thread 11 (crashed)
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - 0 libxul.so!RefPtr<mozilla::gfx::SourceSurface>::operator->() const [RefPtr.h:c51d1038215eefa91552a819433870898cf05864 : 312 + 0x22]
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r0 = 0x00000000 r1 = 0xcb15c85e r2 = 0x5d4020cd r3 = 0x5d4020cd
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r4 = 0x00000139 r5 = 0xce07ff8c r6 = 0xc83c0c9d r7 = 0xce07ff80
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r8 = 0xce07fff8 r9 = 0xce07ff94 r10 = 0xea31d1b8 r12 = 0xe8bdcfb8
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - fp = 0x9f457ba0 sp = 0xce07ff78 lr = 0xeb2e459d pc = 0xc78df970
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Found by: given as instruction pointer in context
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - 1 libxul.so!mozilla::dom::ImageBitmap::ToCloneData() const [ImageBitmap.cpp:c51d1038215eefa91552a819433870898cf05864 : 618 + 0x3]
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r4 = 0x00000000 r5 = 0xce07ff8c r6 = 0xc83c0c9d r7 = 0xce07ffb8
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r8 = 0xce07fff8 r9 = 0xce07ff94 r10 = 0xea31d1b8 fp = 0x9f457ba0
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - sp = 0xce07ff88 lr = 0xc83c0bf5 pc = 0xc83c0bf5
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Found by: call frame info
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - 2 libxul.so!mozilla::WebGLContext::From(StrongGLenum<TexImageTargetDetails>, int, int, int, int, mozilla::TexImageSource const&, mozilla::dom::TypedArray<unsigned char, &js::UnwrapUint8ClampedArray, &(JS_GetUint8ClampedArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint8ClampedArrayLengthAndData, &(JS_NewUint8ClampedArray(JSContext*, unsigned int))>*) [WebGLTextureUpload.cpp:c51d1038215eefa91552a819433870898cf05864 : 427 + 0x5]
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r4 = 0x00000000 r5 = 0xffffffff r6 = 0xce080114 r7 = 0xce080038
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r8 = 0x00000000 r9 = 0x00000de1 r10 = 0xce080054 fp = 0xea31d1b8
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - sp = 0xce07ffc0 lr = 0xc840954d pc = 0xc840954d
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - Found by: call frame info
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - 3 libxul.so!mozilla::ValidateTexOrSubImage(mozilla::WebGLContext*, StrongGLenum<TexImageTargetDetails>, int, int, int, int, mozilla::webgl::PackingInfo const&, mozilla::TexImageSource const&, mozilla::dom::TypedArray<unsigned char, &js::UnwrapUint8ClampedArray, &(JS_GetUint8ClampedArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint8ClampedArrayLengthAndData, &(JS_NewUint8ClampedArray(JSContext*, unsigned int))>*) [WebGLTextureUpload.cpp:c51d1038215eefa91552a819433870898cf05864 : 457 + 0x11]
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r4 = 0xea31d1b8 r5 = 0xafd36400 r6 = 0xce080114 r7 = 0xce080078
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - r8 = 0x00000000 r9 = 0x00000de1 r10 = 0xce0800a4 fp = 0xea31d1b8
#[task 2020-01-06T23:59:59.859Z] 23:59:59 INFO - sp = 0xce080040 lr = 0xc8409a2d pc = 0xc8409a2d
#[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'"]
["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgb-rgb-unsigned_byte.html"]
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'"]
["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_byte.html"]
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'"]
["generated/test_conformance__textures__image_bitmap_from_video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"]
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
#19:53:21 INFO - rax = 0x0000000127afac80 rdx = 0x0000000000000020
#19:53:21 INFO - rcx = 0x0000000000000020 rbx = 0x0000000184cb4400
#19:53:21 INFO - rsi = 0x0000000184cb47a0 rdi = 0x0000000127afafe0
#19:53:21 INFO - rbp = 0x00007fff52570460 rsp = 0x00007fff52570460
#19:53:21 INFO - r8 = 0x0000000000000000 r9 = 0x0000000000000000
#19:53:21 INFO - r10 = 0x0000000000000080 r11 = 0xffffffffa2e46880
#19:53:21 INFO - r12 = 0x0000000000000400 r13 = 0x0000000000000017
#19:53:21 INFO - r14 = 0x0000000127afac80 r15 = 0x0000000000000080
#19:53:21 INFO - rip = 0x00007fff903140e4
#19:53:21 INFO - Found by: given as instruction pointer in context
#19:53:21 INFO - 1 AppleIntelHD5000GraphicsGLDriver + 0x487911
#19:53:21 INFO - rbp = 0x00007fff52570620 rsp = 0x00007fff52570470
#19:53:21 INFO - rip = 0x0000000128c87911
#19:53:21 INFO - Found by: previous frame's frame pointer
#19:53:21 INFO - 2 GLEngine + 0x1a946
#19:53:21 INFO - rbp = 0x00007fff52570730 rsp = 0x00007fff52570630
#19:53:21 INFO - rip = 0x00007fff8f740946
#19:53:21 INFO - Found by: previous frame's frame pointer
#19:53:21 INFO - 3 libGL.dylib + 0x346d
#19:53:21 INFO - rbp = 0x00007fff52570770 rsp = 0x00007fff52570740
#19:53:21 INFO - rip = 0x00007fff908cb46d
#19:53:21 INFO - Found by: previous frame's frame pointer
#19:53:21 INFO - 4 XUL!mozilla::gl::GLContext::fTexImage2D(unsigned int, int, int, int, int, int, unsigned int, unsigned int, void const*) [GLContext.h:6c8751f7f673a9751917d907e630d37abefe186b : 1656 + 0x23]
#19:53:21 INFO - rbp = 0x00007fff525707e0 rsp = 0x00007fff52570780
#19:53:21 INFO - rip = 0x000000010e8d8597
#19:53:21 INFO - Found by: previous frame's frame pointer
#19:53:21 INFO - 5 XUL!mozilla::DoTexImage(mozilla::gl::GLContext*, StrongGLenum<TexImageTargetDetails>, int, mozilla::webgl::DriverUnpackInfo const*, int, int, int, void const*) [WebGLTextureUpload.cpp:6c8751f7f673a9751917d907e630d37abefe186b : 873 + 0x1d]
#19:53:21 INFO - rbx = 0x000000013df74000 rbp = 0x00007fff52570860
#19:53:21 INFO - rsp = 0x00007fff525707f0 r12 = 0x0000000184c7a000
#19:53:21 INFO - r13 = 0x0000000000008517 r14 = 0x000000018b3d1ed4
#19:53:21 INFO - r15 = 0x0000000000000001 rip = 0x000000010fef5063
#19:53:21 INFO - Found by: call frame info
#19:53:21 INFO - 6 XUL!mozilla::webgl::TexUnpackBytes::TexOrSubImage(bool, bool, char const*, mozilla::WebGLTexture*, StrongGLenum<TexImageTargetDetails>, int, mozilla::webgl::DriverUnpackInfo const*, int, int, int, mozilla::webgl::PackingInfo const&, unsigned int*) const [TexUnpackBlob.cpp:6c8751f7f673a9751917d907e630d37abefe186b : 407 + 0x11]
#19:53:21 INFO - rbx = 0x00000001439df838 rbp = 0x00007fff52570910
#19:53:21 INFO - rsp = 0x00007fff52570870 r12 = 0x0000000000000000
#19:53:21 INFO - r13 = 0x00000001439df800 r14 = 0x000000013df750b0
#19:53:21 INFO - r15 = 0x0000000000000100 rip = 0x000000010fe79f5b
#19:53:21 INFO - Found by: call frame info
#19:53:21 INFO - 7 XUL!mozilla::WebGLTexture::TexImage(char const*, StrongGLenum<TexImageTargetDetails>, int, unsigned int, mozilla::webgl::PackingInfo const&, mozilla::webgl::TexUnpackBlob const*) [WebGLTextureUpload.cpp:6c8751f7f673a9751917d907e630d37abefe186b : 1295 + 0x2d]
#19:53:21 INFO - rbx = 0x0000000115c5cfe8 rbp = 0x00007fff525709f0
#19:53:21 INFO - rsp = 0x00007fff52570920 r12 = 0x0000000000000100
#19:53:21 INFO - r13 = 0x000000013df7b0e0 r14 = 0x000000011420912a
#19:53:21 INFO - r15 = 0x000000013df7b000 rip = 0x000000010fef43dd
#19:53:21 INFO - Found by: call frame info
#19:53:21 INFO - 8 XUL!mozilla::WebGLTexture::TexImage(char const*, StrongGLenum<TexImageTargetDetails>, int, unsigned int, int, int, int, int, mozilla::webgl::PackingInfo const&, mozilla::TexImageSource const&) [WebGLTextureUpload.cpp:6c8751f7f673a9751917d907e630d37abefe186b : 478 + 0x1d]
#19:53:21 INFO - rbx = 0x000000013df750b0 rbp = 0x00007fff52570aa0
#19:53:21 INFO - rsp = 0x00007fff52570a00 r12 = 0x0000000000008517
#19:53:21 INFO - r13 = 0x000000011420912a r14 = 0x00007fff52570ae8
#19:53:21 INFO - r15 = 0x000000013df7b000 rip = 0x000000010fef3d62
#19:53:21 INFO - Found by: call frame info
#19:53:21 INFO - 9 XUL!mozilla::WebGLContext::TexImage(char const*, unsigned char, unsigned int, int, unsigned int, int, int, int, int, unsigned int, unsigned int, mozilla::TexImageSource const&) [WebGLContextTextures.cpp:6c8751f7f673a9751917d907e630d37abefe186b : 391 + 0x1f]
#19:53:21 INFO - rbx = 0x000000011420912a rbp = 0x00007fff52570b20
#19:53:21 INFO - rsp = 0x00007fff52570ab0 r12 = 0x0000000000000100
#19:53:21 INFO - r13 = 0x00007fff52570bd0 r14 = 0x0000000000001908
#19:53:21 INFO - r15 = 0x0000000000000000 rip = 0x000000010feb6cfe
#19:53:21 INFO - Found by: call frame info
#19:53:21 INFO - 10 XUL!mozilla::dom::WebGLRenderingContext_Binding::texImage2D(JSContext*, JS::Handle<JSObject*>, mozilla::WebGLContext*, JSJitMethodCallArgs const&) [WebGLContext.h:6c8751f7f673a9751917d907e630d37abefe186b : 1231 + 0x55]
#19:53:21 INFO - rbx = 0x00007fff52570c60 rbp = 0x00007fff52570cc0
#19:53:21 INFO - rsp = 0x00007fff52570b30 r12 = 0x00007fff52570c38
#19:53:21 INFO - r13 = 0x00007fff52570cf8 r14 = 0x000000011c125000
#19:53:21 INFO - r15 = 0xfff8800000001401 rip = 0x000000010f8a563f
#19:53:21 INFO - Found by: call frame info
skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
]
["generated/test_conformance__textures__misc__gl-teximage.html"]
# application crashed [@ jemalloc_crash]
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"]
["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"]
["generated/test_conformance__textures__misc__tex-image-and-sub-image-2d-with-array-buffer-view.html"]
# time out crash
skip-if = ["os == 'win' && debug"]
["generated/test_conformance__textures__misc__tex-image-webgl.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__textures__misc__tex-image-with-invalid-data.html"]
skip-if = ["os == 'android'"]
####################
# Timeouts
["generated/test_conformance__textures__misc__tex-video-using-tex-unit-non-zero.html"]
# Fails on QuantumRender configs, but passes on standard configs?
# Might be intermittant.
skip-if = [
"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 == 'linux' && os_version == '18.04'",
]
["generated/test_conformance__textures__misc__texture-mips.html"]
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' && processor == 'x86_64'", # win11 - 50/50 intermittent
"os == 'android' && android_version == '33'", # Bug 1873144
"os == 'android' && android_version == '34'", # 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'"]
["generated/test_conformance__textures__misc__texture-size-cube-maps.html"]
# application crashed [@ mozilla::gl::GLContext::AfterGLCall]
skip-if = ["os == 'android'"]
["generated/test_conformance__textures__misc__texture-size-limit.html"]
skip-if = ["os == 'linux' && asan"]
["generated/test_conformance__textures__misc__texture-size.html"]
# application crashed [@ mozilla::gl::GLContext::AfterGLCall]
skip-if = [
"os == 'android'",
"os == 'win'",
]
["generated/test_conformance__textures__misc__texture-srgb-upload.html"]
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'"]
["generated/test_conformance__textures__misc__texture-upload-size.html"]
# application crashed [@ mozilla::WebGLTexture::TexSubImage]
skip-if = [
"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"]
["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"]
["generated/test_conformance__textures__video__tex-2d-alpha-alpha-unsigned_byte.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__textures__video__tex-2d-luminance-luminance-unsigned_byte.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__textures__video__tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_byte.html"]
skip-if = [
"os == 'android'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR
]
["generated/test_conformance__textures__video__tex-2d-rgb-rgb-unsigned_short_5_6_5.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_byte.html"]
skip-if = [
"os == 'android'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'", # Bug 1673105 for mac+WR
]
["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__textures__video__tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html"]
skip-if = ["os == 'android'"]
["generated/test_conformance__uniforms__out-of-bounds-uniform-array-access.html"]
# Crashes
skip-if = [
"os == 'android'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'mac' && os_version == '15.30' && arch == 'aarch64'",
]
["generated/test_conformance__uniforms__uniform-default-values.html"]
# Timeout on Windows, crash on Android/Linux.
skip-if = [
"os == 'android'",
"os == 'linux'",
"os == 'win'",
]
["generated/test_conformance__uniforms__uniform-values-per-program.html"]
# Crashes on D3D11 debug.
skip-if = ["os == 'win'"]
|