aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/test.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-30 18:56:05 +0200
committerMarvin Borner2020-08-30 18:56:05 +0200
commit30932492e9f8a98e1f98461c9d28547f23d82e7e (patch)
treeffc7acb099a81e09d73df2e4a8290d4a8dc8bfc2 /kernel/inc/test.h
parentffa367193078ba32012494cfa7be50e6b3b18e2d (diff)
Even more tests
Diffstat (limited to 'kernel/inc/test.h')
-rw-r--r--kernel/inc/test.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/kernel/inc/test.h b/kernel/inc/test.h
new file mode 100644
index 0000000..6f2cdbb
--- /dev/null
+++ b/kernel/inc/test.h
@@ -0,0 +1,42 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef TEST_H
+#define TEST_H
+
+#include <boot.h>
+#include <print.h>
+#include <str.h>
+
+#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); \
+ }
+
+#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)); \
+ }
+
+#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)); \
+ }
+
+void test_all(struct vid_info *vid_info);
+
+#endif