mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-20 15:38:19 +02:00
These 3 new tests are modeled after 3 existing tests but made slightly more complex since now instead of definining a new macro to be an existing macro, we define it to be replaced with two tokens, (one a literal, and one an existing macro). These tests all fail currently because the replacement lookup is currently happening on the basis of the entire replacement string rather than on a list of tokens.
6 lines
66 B
C
6 lines
66 B
C
#define foo a bar
|
|
#define bar b baz
|
|
#define baz c foo
|
|
foo
|
|
bar
|
|
baz
|