mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
Add two tests developed on the take-2 branch.
The define-chain-obj-to-func-parens-in-text test passes here while the if-with-macros test fails.
This commit is contained in:
parent
00f1ec421e
commit
a8ea26d7c9
2 changed files with 37 additions and 0 deletions
34
tests/054-if-with-macros.c
Normal file
34
tests/054-if-with-macros.c
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#define one 1
|
||||
#define two 2
|
||||
#define three 3
|
||||
#define five 5
|
||||
#if five < two
|
||||
failure_1
|
||||
#else
|
||||
success_1
|
||||
#endif
|
||||
#if three >= two
|
||||
success_2
|
||||
#else
|
||||
failure_2
|
||||
#endif
|
||||
#if two + three <= five
|
||||
success_3
|
||||
#else
|
||||
failure_3
|
||||
#endif
|
||||
#if five - two == three
|
||||
success_4
|
||||
#else
|
||||
failure_4
|
||||
#endif
|
||||
#if one > three
|
||||
failure_5
|
||||
#else
|
||||
success_5
|
||||
#endif
|
||||
#if one != five
|
||||
success_6
|
||||
#else
|
||||
failure_6
|
||||
#endif
|
||||
3
tests/055-define-chain-obj-to-func-parens-in-text.c
Normal file
3
tests/055-define-chain-obj-to-func-parens-in-text.c
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#define failure() success
|
||||
#define foo failure
|
||||
foo()
|
||||
Loading…
Add table
Reference in a new issue