From: Carl Worth Date: Mon, 24 May 2010 18:33:28 +0000 (-0700) Subject: Add test for '/', '<<', and '>>' in #if expressions. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=00f1ec421edf73516fdcfbbdb651f13eeefe8f08;p=mesa.git Add test for '/', '<<', and '>>' in #if expressions. These operators have been supported already, but were not covered in existing tests yet. So this test passes already. --- diff --git a/tests/053-if-divide-and-shift.c b/tests/053-if-divide-and-shift.c new file mode 100644 index 00000000000..ddc1573ab26 --- /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 +