Regression tests now pass on z80
[fw/sdcc] / support / regression / tests / muldiv.c
index 3757d04ccbb9edfef1c3b01e80b45062193ef8c0..c66c70574974ef4917c32c89eaa5196af5f28fc5 100644 (file)
@@ -1,16 +1,53 @@
 /** Simple test for the mul/div/mod operations.
 
-    type: int, signed char, short
+    type: int, char, short
     storage: static,
     attr: volatile,
 */
 #include <testfwk.h>
 
+static void
+testUnsignedModDiv(void)
+{
+    {attr} {storage} unsigned {type} i;
+    unsigned {type} result;
+
+    i = 100;
+
+    result = i/3;
+    ASSERT(result == 33);
+
+    result = i/12;
+    ASSERT(result == 8);
+
+    result = i%7;
+    ASSERT(result == 2);
+
+    result = i%34;
+    ASSERT(result == 32);
+}
+
+static void
+testUnsignedMul(void)
+{
+    {attr} {storage} unsigned {type} i;
+    unsigned {type} result;
+
+    i = 37;
+
+    LOG(("i*3 == 111 = %u\n", i*3));
+    result = i*3;
+    ASSERT(result == 111);
+
+    result = i*12;
+    ASSERT(result == ((unsigned {type})444));
+}
+
 static void
 testMul(void)
 {
-    {attr} {storage} {type} i;
-    {type} result;
+    {attr} {storage} signed {type} i;
+    signed {type} result;
 
     i = 5;
 
@@ -32,7 +69,7 @@ testMul(void)
 static void
 testDiv(void)
 {
-    {attr} {storage} {type} i;
+    {attr} {storage} signed {type} i;
 
     i = 100;
     LOG(("i/5 == 20 = %u\n", (int)i/5));
@@ -48,19 +85,24 @@ testDiv(void)
 }
 
 static void
-disabled_testMod(void)
+testMod(void)
 {
-    {attr} {storage} {type} i;
+    {attr} {storage} signed {type} i;
 
+    // Disabled the LOG functions due to a bug in sdcc involving
+    // vaargs.
     i = 100;
-    LOG(("i%%17 == 15 = %u\n", (int)(i%9)));
+    //    LOG(("i%%17 == 15 = %u\n", (int)(i%9)));
     ASSERT(i%17 == 15);
-    LOG(("i%%-7 == 2 = %u\n", (int)i%-7));
+
+#if MOD_SIGN_FOLLOWS_DIVIDEND
+    //    LOG(("i%%-7 == 2 = %u\n", (int)i%-7));
     ASSERT(i%-7 == 2);
 
     i = -49;
-    LOG(("i%%3 == -1 = %u\n", (int)i%3));
+    //    LOG(("i%%3 == -1 = %u\n", (int)i%3));
     ASSERT(i%3 == -1);
-    LOG(("i%%-5 == -4 = %u\n", (int)i%-5));
+    //    LOG(("i%%-5 == -4 = %u\n", (int)i%-5));
     ASSERT(i%-5 == -4);
+#endif
 }