Add some more tests.
This commit is contained in:
parent
84c7b6ba90
commit
132baac78a
|
@ -9,9 +9,20 @@ int zero = 0;
|
|||
/* Bypasses the CRT, so there's no stdio or BSS initialisation. */
|
||||
void _m_a_i_n(void)
|
||||
{
|
||||
ASSERT((three/two) == 1);
|
||||
ASSERT((-three/two) == -1);
|
||||
ASSERT((-three/-two) == 1);
|
||||
ASSERT((three/-two) == -1);
|
||||
ASSERT((three / two) == 1);
|
||||
ASSERT((-three / two) == -1);
|
||||
ASSERT((-three / -two) == 1);
|
||||
ASSERT((three / -two) == -1);
|
||||
|
||||
ASSERT((three / 2) == 1);
|
||||
ASSERT((-three / 2) == -1);
|
||||
ASSERT((-three / -2) == 1);
|
||||
ASSERT((three / -2) == -1);
|
||||
|
||||
ASSERT((3 / two) == 1);
|
||||
ASSERT((-3 / two) == -1);
|
||||
ASSERT((-3 / -two) == 1);
|
||||
ASSERT((3 / -two) == -1);
|
||||
|
||||
finished();
|
||||
}
|
28
plat/qemuppc/tests/intrem_e.c
Normal file
28
plat/qemuppc/tests/intrem_e.c
Normal file
|
@ -0,0 +1,28 @@
|
|||
#include "test.h"
|
||||
|
||||
/* Constants in globals to defeat constant folding. */
|
||||
int three = 3;
|
||||
int two = 2;
|
||||
int one = 1;
|
||||
int zero = 0;
|
||||
|
||||
/* Bypasses the CRT, so there's no stdio or BSS initialisation. */
|
||||
void _m_a_i_n(void)
|
||||
{
|
||||
ASSERT((three % two) == 1);
|
||||
ASSERT((-three % two) == -1);
|
||||
ASSERT((-three % -two) == -1);
|
||||
ASSERT((three % -two) == 1);
|
||||
|
||||
ASSERT((three % 2) == 1);
|
||||
ASSERT((-three % 2) == -1);
|
||||
ASSERT((-three % -2) == -1);
|
||||
ASSERT((three % -2) == 1);
|
||||
|
||||
ASSERT((3 % two) == 1);
|
||||
ASSERT((-3 % two) == -1);
|
||||
ASSERT((-3 % -two) == -1);
|
||||
ASSERT((3 % -two) == 1);
|
||||
|
||||
finished();
|
||||
}
|
Loading…
Reference in a new issue