glcpp: Add a test for a macro that implements token pasting twice.

This is something that piglit is exercising that currently fails.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Signed-off-by: Carl Worth <cworth@cworth.org>
This commit is contained in:
Carl Worth
2011-09-29 16:50:40 -07:00
parent 9c72b729f3
commit 8e6b99e7b1
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
#define paste_twice(a,b,c) a ## b ## c
paste_twice(just, one, token)

View File

@@ -0,0 +1,4 @@
justonetoken