diff options
author | Carl Worth <cworth@cworth.org> | 2010-08-23 09:26:44 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-08-23 10:48:10 -0700 |
commit | 2a9e791fdeb45080a98042d41c153ea19c17caae (patch) | |
tree | 233a55f1b79779fed9a1e66391547684e41d639c /src/glsl/glcpp/tests/091-hash-line.c.expected | |
parent | c15f04b326aafc27aa2e508ab88bf209c829abd7 (diff) |
glcpp: Add new test for #line directive.
This test exposes two current bugs:
1. The source number is not being correctly emitted in error
messages (instead, it's always 0).
2. A directive of "#line 0" is resulting in the following
parse error:
preprocessor error: Invalid tokens after #
Diffstat (limited to 'src/glsl/glcpp/tests/091-hash-line.c.expected')
-rw-r--r-- | src/glsl/glcpp/tests/091-hash-line.c.expected | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/glsl/glcpp/tests/091-hash-line.c.expected b/src/glsl/glcpp/tests/091-hash-line.c.expected new file mode 100644 index 0000000000..e663398c16 --- /dev/null +++ b/src/glsl/glcpp/tests/091-hash-line.c.expected @@ -0,0 +1,13 @@ +0:0(1): preprocessor error: #error line 0 error +0:25(1): preprocessor error: #error line 25 error +1:0(1): preprocessor error: #error source 1, line 0 error +2:30(1): preprocessor error: #error source 2, line 30 error + + + + + + + + + |