summaryrefslogtreecommitdiff
path: root/glcpp/tests/054-if-with-macros.c
blob: 3da79a0d96e547238f91f221c570daa2d6f2826d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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