mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1140148 - manifest updates for mochitest-gl on Android 4.3; r=jgilbert
This commit is contained in:
parent
1471bf4409
commit
a239d5517b
@ -73,6 +73,9 @@ var OS_VERSION_OSX_10_8 = 10.8;
|
||||
// ICS 4.0-4.0.2 was 14, 4.0.3+ was 15.
|
||||
var OS_VERSION_ANDROID_ICS = 14;
|
||||
|
||||
// Jellybean 4.3
|
||||
var OS_VERSION_ANDROID_JB = 18;
|
||||
|
||||
var ALWAYS_FAIL_TEST_FILEPATH = 'always-fail.html';
|
||||
|
||||
function GetExpectedTestFailSet() {
|
||||
@ -108,7 +111,16 @@ function GetExpectedTestFailSet() {
|
||||
break;
|
||||
|
||||
case DriverInfo.OS.ANDROID:
|
||||
if (DriverInfo.getOSVersion() >= OS_VERSION_ANDROID_ICS) {
|
||||
if (DriverInfo.getOSVersion() == OS_VERSION_ANDROID_JB) {
|
||||
// Android 4.3 slaves.
|
||||
failSet['conformance/extensions/oes-texture-float.html'] = true;
|
||||
failSet['conformance/glsl/functions/glsl-function-sin.html'] = true;
|
||||
failSet['conformance/misc/object-deletion-behaviour.html'] = true;
|
||||
failSet['conformance/textures/tex-image-with-format-and-type.html'] = true;
|
||||
failSet['conformance/textures/texture-mips.html'] = true;
|
||||
failSet['conformance/textures/texture-npot.html'] = true;
|
||||
failSet['conformance/textures/texture-size-cube-maps.html'] = true;
|
||||
} else if (DriverInfo.getOSVersion() >= OS_VERSION_ANDROID_ICS) {
|
||||
// Android 4.0 slaves.
|
||||
failSet['conformance/extensions/oes-vertex-array-object.html'] = true;
|
||||
failSet['conformance/glsl/functions/glsl-function-abs.html'] = true;
|
||||
|
Loading…
Reference in New Issue
Block a user