aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/test.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-30 21:49:52 +0200
committerMarvin Borner2020-08-30 21:49:52 +0200
commit00adfffc296476f3fe247ce3f341c9f5addd190d (patch)
tree605115d21a62179314b037f31b8e67038c15ef3b /kernel/inc/test.h
parent30932492e9f8a98e1f98461c9d28547f23d82e7e (diff)
Even mooore tests or sth
Diffstat (limited to 'kernel/inc/test.h')
-rw-r--r--kernel/inc/test.h28
1 files changed, 5 insertions, 23 deletions
diff --git a/kernel/inc/test.h b/kernel/inc/test.h
index 6f2cdbb..8bd0d41 100644
--- a/kernel/inc/test.h
+++ b/kernel/inc/test.h
@@ -10,32 +10,14 @@
#define a_mag 0x55
#define b_mag 0x42
-#define check(exp) \
- if ((exp)) { \
- printf("\x1B[32m[PASS]\x1B[0m %s:%d: %s: Test '%s'\n", __FILE__, __LINE__, \
- __func__, #exp); \
- } else { \
- printf("\x1B[31m[FAIL]\x1B[0m %s:%d: %s: Test '%s'\n", __FILE__, __LINE__, \
- __func__, #exp); \
- }
+void pass_or_fail(const char *file_name, int line_num, const char *func, const char *first,
+ const char *second, int success);
+#define check(exp) pass_or_fail(__FILE__, __LINE__, __func__, #exp, "1", exp);
#define equals(first, second) \
- if ((first) == (second)) { \
- printf("\x1B[32m[PASS]\x1B[0m %s:%d: %s: Test equality '%s'(%d) == '%s'(%d)\n", \
- __FILE__, __LINE__, __func__, #first, (first), #second, (second)); \
- } else { \
- printf("\x1B[31m[FAIL]\x1B[0m %s:%d: %s: Test equality '%s'(%d) == '%s'(%d)\n", \
- __FILE__, __LINE__, __func__, #first, (first), #second, (second)); \
- }
-
+ pass_or_fail(__FILE__, __LINE__, __func__, #first, #second, (first) == (second));
#define equals_str(first, second) \
- if (strcmp((first), (second)) == 0) { \
- printf("\x1B[32m[PASS]\x1B[0m %s:%d: %s: Test equality %s(%s) '%s'(%s)\n", \
- __FILE__, __LINE__, __func__, #first, (first), #second, (second)); \
- } else { \
- printf("\x1B[31m[FAIL]\x1B[0m %s:%d: %s: Test equality %s(%s) '%s'(%s)\n", \
- __FILE__, __LINE__, __func__, #first, (first), #second, (second)); \
- }
+ pass_or_fail(__FILE__, __LINE__, __func__, #first, #second, strcmp((first), (second)) == 0);
void test_all(struct vid_info *vid_info);