Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(774)

Unified Diff: content/test/gpu/gpu_tests/gpu_test_expectations.py

Issue 1974893002: WebGL2 expectations: add initial webgl2 ANGLE expectations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/webgl2_conformance_expectations.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/gpu_tests/gpu_test_expectations.py
diff --git a/content/test/gpu/gpu_tests/gpu_test_expectations.py b/content/test/gpu/gpu_tests/gpu_test_expectations.py
index 67911fcc0c98d7bb2ba747d33119e86a3a19b055..047d46bc6ea8e115b1c890674e55e533ec661cce 100644
--- a/content/test/gpu/gpu_tests/gpu_test_expectations.py
+++ b/content/test/gpu/gpu_tests/gpu_test_expectations.py
@@ -4,7 +4,7 @@
from gpu_tests import test_expectations
-ANGLE_CONDITIONS = ['d3d9', 'd3d11', 'opengl']
+ANGLE_CONDITIONS = ['d3d9', 'd3d11', 'opengl', 'no_angle']
GPU_CONDITIONS = ['amd', 'arm', 'broadcom', 'hisilicon', 'intel', 'imagination',
'nvidia', 'qualcomm', 'vivante']
@@ -28,7 +28,9 @@ class GpuExpectation(test_expectations.Expectation):
qualcomm, vivante
ANGLE renderer:
- d3d9, d3d11, opengl
+ d3d9, d3d11, opengl, no_angle
+ no_angle can be used to avoid conflicts between expectations for
+ ANGLE and expectations not for ANGLE
Specific GPUs can be listed as a tuple with vendor name and device ID.
Examples: ('nvidia', 0x1234), ('arm', 'Mali-T604')
@@ -128,4 +130,4 @@ class GpuTestExpectations(test_expectations.TestExpectations):
return 'd3d9'
elif 'OpenGL' in gl_renderer:
return 'opengl'
- return ''
+ return 'no_angle'
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/webgl2_conformance_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698