Tests: Non-determinancy: Add back in the IntMin tests.

This commit is contained in:
John Kessenich
2017-10-28 12:55:02 -06:00
parent a63622286f
commit 5866e67b8d
5 changed files with 85 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
#if (-2147483648 / -1) != 0
#error INT_MIN / -1 should yield 0, something went wrong.
#endif
#if (-2147483648 % -1) != 0
#error INT_MIN % -1 should yield 0, something went wrong.
#endif