summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2016-07-28 15:19:45 -0700
committerDylan Baker <dylan@pnwbakers.com>2016-08-05 10:45:05 -0700
commit914d7a4b1881a4a3dc058684b1b970662a93b55e (patch)
treeb0727100f47c408741d9848fc83ffbf343a23387 /unittests
parent13b97ad898319ac0d0362a83dcdbfbf0a72b6d21 (diff)
framework/test/glsl_parser_test: Don't error on blank C comments
Currently if a C style comment has a blank line in it: /* * my comment * * more */ The parser will choke and die. That's not good, so fix it. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'unittests')
-rw-r--r--unittests/framework/test/test_glsl_parser_test.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/unittests/framework/test/test_glsl_parser_test.py b/unittests/framework/test/test_glsl_parser_test.py
index 69ad5fc7f..be7a4f51f 100644
--- a/unittests/framework/test/test_glsl_parser_test.py
+++ b/unittests/framework/test/test_glsl_parser_test.py
@@ -216,7 +216,6 @@ def test_blank_in_config_c(tmpdir):
six.text_type(p), 'pass', '1.10']
-@pytest.mark.xfail
def test_empty_in_config_c(tmpdir):
"""test.glsl_parser_test.GLSLParserTest: C style comments can have blank
commented lines."""