From: Carl Worth Date: Thu, 27 May 2010 17:14:38 +0000 (-0700) Subject: Add test 56 for a comma within the expansion of an argument. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=602a34769a0850a98366c4011ce8b8c7d08c9276;p=mesa.git Add test 56 for a comma within the expansion of an argument. This case was tricky on the take-2 branch. It happens to be passing already here. --- diff --git a/tests/056-macro-argument-with-comma.c b/tests/056-macro-argument-with-comma.c new file mode 100644 index 00000000000..58701d1f25b --- /dev/null +++ b/tests/056-macro-argument-with-comma.c @@ -0,0 +1,4 @@ +#define bar with,embedded,commas +#define function(x) success +#define foo function +foo(bar)