mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-27 15:55:16 +00:00
Bug 1140148 - manifest updates for mochitest-gl on Android 4.3; r=jgilbert
This commit is contained in:
parent
07b447ebc4
commit
eabca9b9fb
@ -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…
x
Reference in New Issue
Block a user