summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2016-07-28 15:31:30 -0700
committerDylan Baker <dylan@pnwbakers.com>2016-08-05 10:45:05 -0700
commitedda1042e7b0c62d07edadaf3ea405e3cdd59859 (patch)
tree90d967bcf2c11ae6c10ba3986fc648dc1ff7fa28 /unittests
parent914d7a4b1881a4a3dc058684b1b970662a93b55e (diff)
framework/test/glsl_parser_test: Add ARB_ESx to command line when needed
When using the GL binary to run GLES tests the appropriate ES compatibility extension is added to the fast skipping requirements, but not to the command line options. It needs to be added to the command line options too, so that it will be skipped properly when not using the fast-skipping layer. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'unittests')
-rw-r--r--unittests/framework/test/test_glsl_parser_test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/unittests/framework/test/test_glsl_parser_test.py b/unittests/framework/test/test_glsl_parser_test.py
index be7a4f51f..124f3e9e9 100644
--- a/unittests/framework/test/test_glsl_parser_test.py
+++ b/unittests/framework/test/test_glsl_parser_test.py
@@ -454,10 +454,10 @@ def test_add_compatibility_requirement_fastskip(version, extension, tmpdir,
@pytest.mark.parametrize("version,extension", [
- pytest.mark.xfail(('1.00', 'ARB_ES2_compatibility')),
- pytest.mark.xfail(('3.00', 'ARB_ES3_compatibility')),
- pytest.mark.xfail(('3.10', 'ARB_ES3_1_compatibility')),
- pytest.mark.xfail(('3.20', 'ARB_ES3_2_compatibility')),
+ ('1.00', 'ARB_ES2_compatibility'),
+ ('3.00', 'ARB_ES3_compatibility'),
+ ('3.10', 'ARB_ES3_1_compatibility'),
+ ('3.20', 'ARB_ES3_2_compatibility'),
])
def test_add_compatibility_requirement_binary(version, extension, tmpdir,
mocker):