diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2014-07-28 16:34:36 -0700 |
---|---|---|
committer | Dylan Baker <dylanx.c.baker@intel.com> | 2014-08-12 13:36:05 -0700 |
commit | 3164e1fe3c5dfd0c0fa48a85e92df2eb99c7c15a (patch) | |
tree | 746e325fed88dbb06f908738b29c93999dca0b9b /tests/glslparsertest/glsl2/bit-logic-assign-02.frag | |
parent | 40e9182050eaf2c507eb4e621e27875e868b8920 (diff) |
tests/glslparsertest/glsl2: Remove illegal comments from glslparsertests
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>
Diffstat (limited to 'tests/glslparsertest/glsl2/bit-logic-assign-02.frag')
-rw-r--r-- | tests/glslparsertest/glsl2/bit-logic-assign-02.frag | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/glslparsertest/glsl2/bit-logic-assign-02.frag b/tests/glslparsertest/glsl2/bit-logic-assign-02.frag index 94cc23faa..71e857d3f 100644 --- a/tests/glslparsertest/glsl2/bit-logic-assign-02.frag +++ b/tests/glslparsertest/glsl2/bit-logic-assign-02.frag @@ -2,9 +2,6 @@ // expect_result: pass // glsl_version: 1.30 // -// # NOTE: Config section was auto-generated from file -// # NOTE: 'glslparser.tests' at git revision -// # NOTE: 6cc17ae70b70d150aa1751f8e28db7b2a9bd50f0 // [end config] // Expected: PASS, glsl == 1.30 |