summaryrefslogtreecommitdiff
path: root/tests/glslparsertest/glsl2/bit-logic-10.frag
AgeCommit message (Collapse)AuthorFilesLines
2014-08-12tests/glslparsertest/glsl2: Remove illegal comments from glslparsertestsDylan Baker1-3/+0
This patch removes comments from the [config] block of these glslparsertests, these comments were autogenerated by glslparser.tests, which has since been removed from the source tree. Of note these comments would be legal if they weren't contained with in the [config]/[end config] block This was generated by running the following command: grep -l -R -m 1 --color=never '// # NOTE:' * | xargs ./purge.py cat purge.py <<EOF import sys for each in sys.argv: with open(each, 'r') as f: content = f.readlines() with open(each, 'w+') as f: for line in content: if not line.startswith('// # NOTE:'): f.write(line) EOF Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
2010-12-01glslparsertest: Prepend GLSLParserTest comment block to existing testsChad Versace1-0/+9
GLSLParserTest requires that each test contain a special comment block.
2010-10-14glslparsertest: Add tests for bit logic ops in GLSL 1.30Chad Versace1-0/+70
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>