* support/regression/tests/bug1057979.c, support/regression/tests/malloc.c,
[fw/sdcc] / support / regression / fwk / include / testfwk.h
index 2e3a721fe2f39d175efbd70d6a3063e9eb937db1..36a9df0979fc7c8100f439bee10a4f431b6b7d68 100644 (file)
@@ -1,21 +1,51 @@
 #ifndef __TESTFWK_H
-#define __TESTFWK_H 1
+#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 LOG(_a)     __printf _a
+#else
+#define LOG(_a)     /* hollow log */
+#endif
 
-#define ASSERT(_a) (__numTests++, (_a) ? (void)0 : __fail("Assertion failed", #_a, __FILE__, __LINE__))
+#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)
+#endif
 
-typedef void TESTFUN(void);
+#if defined(SDCC_hc08)
+# define idata data
+# define pdata data
+#endif
 
-// Provided by the suite
-void **
-suite(void);
+#if defined(SDCC_pic16)
+# define idata data
+# define xdata data
+#endif
 
-const char *
-getSuiteName(void);
+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 NULL   0
+#define ASSERT(_a)  (__numTests++, (_a) ? (void)0 : __fail("Assertion failed", #_a, __FILE__, __LINE__))
+#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