* support/regression/fwk/testfwk.h:
[fw/sdcc] / support / regression / fwk / include / testfwk.h
index 2e99300aa21b17fb819acddfa711c8034b26abf7..5e9c19a356057becd5f1dc1b630b4103738ef92d 100644 (file)
@@ -2,31 +2,32 @@
 #define __TESTFWK_H   1
 
 extern int __numTests;
+extern const int __numCases;
 
-void __fail(const char *szMsg, const char *szCond, const char *szFile, int line);
+#ifndef NO_VARARGS
 void __printf(const char *szFormat, ...);
-
-#define ASSERT(_a)  (__numTests++, (_a) ? (void)0 : __fail("Assertion failed", #_a, __FILE__, __LINE__))
 #define LOG(_a)     __printf _a
-#define FAIL()      FAILM("Failure")
-#define FAILM(_a)   __fail(_a, #_a, __FILE__, __LINE__)
-
-typedef void (*TESTFUNP)(void);
-
-// Provided by the suite
-TESTFUNP *suite(void);
-
-const char *getSuiteName(void);
-
-#define NULL  0
+#else
+#define LOG(_a)     /* hollow log */
+#endif
 
-#define UNUSED(_a)  if (_a) { }
+#ifdef SDCC
+ #include <sdcc-lib.h>
+#else
+ #define _AUTOMEM
+ #define _STATMEM
+#endif
 
 #if defined(PORT_HOST) || defined(SDCC_z80) || defined(SDCC_gbz80)
+# define data
 # define idata
 # define pdata
 # define xdata
 # define code
+# define near
+# define far
+# define at(x)
+# define reentrant
 #endif
 
 #if defined(SDCC_hc08)
@@ -34,4 +35,27 @@ const char *getSuiteName(void);
 # define pdata data
 #endif
 
+#if defined(SDCC_pic16)
+# define idata data
+# define xdata data
+# define pdata data
 #endif
+
+void __fail(code const char *szMsg, code const char *szCond, code const char *szFile, int line);
+void __prints(const char *s);
+void __printn(int n);
+code const char *__getSuiteName(void);
+void __runSuite(void);
+
+#define ASSERT(_a)  (++__numTests, (_a) ? (void)0 : __fail("Assertion failed", #_a, __FILE__, __LINE__))
+#define ASSERT_FAILED(_a)  (++__numTests, (_a) ? 0 : (__fail("Assertion failed", #_a, __FILE__, __LINE__), 1))
+#define FAIL()      FAILM("Failure")
+#define FAILM(_a)   __fail(_a, #_a, __FILE__, __LINE__)
+
+#ifndef NULL
+#define NULL  0
+#endif
+
+#define UNUSED(_a)  if (_a) { }
+
+#endif //__TESTFWK_H