Update BattFS in order to use the new kblock interface.
[bertos.git] / bertos / mware / sprintf_test.c
index 390b6c314becd60bd1763ebb24663f736be6a4c4..eba0da66e58d2ce572e499ab9d6484f602d60c92 100644 (file)
@@ -30,6 +30,8 @@
  *
  * -->
  *
+ * notest: avr
+ * notest: arm
  * \brief sprintf() implementation based on _formatted_write()
  *
  * \version $Id$
@@ -64,7 +66,7 @@ int sprintf_testRun(void)
        if (strcmp(buf, test_string) != 0)
                return 1;
 
-       snprintf(buf, sizeof buf, "%S", test_string_pgm);
+       snprintf(buf, sizeof buf, "%S", (const wchar_t *)test_string_pgm);
        if (strcmp(buf, test_string_pgm) != 0)
                return 2;
 
@@ -94,7 +96,7 @@ int sprintf_testRun(void)
        /*
         * Stress tests.
         */
-       snprintf(buf, sizeof buf, "%s", NULL);
+       snprintf(buf, sizeof buf, "%s", (char *)(NULL));
        if (strcmp(buf, "<NULL>") != 0)
                return 3;
        snprintf(buf, sizeof buf, "%k");
@@ -110,11 +112,4 @@ int sprintf_testTearDown(void)
        return 0;
 }
 
-#if UNIT_TEST
-       #include <drv/kdebug.c>
-       #include "sprintf.c"
-       #include "formatwr.c"
-       #include "hex.c"
-       TEST_MAIN(sprintf);
-#endif /* UNIT_TEST */
-
+TEST_MAIN(sprintf);