diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/053-if-divide-and-shift.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/053-if-divide-and-shift.c b/tests/053-if-divide-and-shift.c new file mode 100644 index 0000000000..ddc1573ab2 --- /dev/null +++ b/tests/053-if-divide-and-shift.c @@ -0,0 +1,16 @@ +#if (15 / 2) != 7 +failure_1 +#else +success_1 +#endif +#if (1 << 12) == 4096 +success_2 +#else +failure_2 +#endif +#if (31762 >> 8) != 124 +failure_3 +#else +success_3 +#endif + |