aboutsummaryrefslogtreecommitdiff
path: root/kernel/test.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-30 12:01:33 +0200
committerMarvin Borner2020-08-30 12:01:33 +0200
commitffa367193078ba32012494cfa7be50e6b3b18e2d (patch)
tree92b337d03c75f59739f39fffa789c57d69c1477d /kernel/test.c
parentf73592503981eaacf1836f0d0049bed2f989212e (diff)
Added some tests
Diffstat (limited to 'kernel/test.c')
-rw-r--r--kernel/test.c44
1 files changed, 38 insertions, 6 deletions
diff --git a/kernel/test.c b/kernel/test.c
index b328a2c..93fcbb1 100644
--- a/kernel/test.c
+++ b/kernel/test.c
@@ -2,25 +2,59 @@
#include <assert.h>
#include <boot.h>
+#include <conv.h>
#include <cpu.h>
#include <fs.h>
#include <keyboard.h>
#include <load.h>
+#include <math.h>
#include <mem.h>
#include <mouse.h>
#include <serial.h>
+#include <str.h>
#include <syscall.h>
#include <timer.h>
+#define a_mag 0x55
+#define b_mag 0x42
+#define check(exp) \
+ if (!(exp)) { \
+ printf("\x1B[31m[FAIL]\x1B[0m %s:%d: %s: Test '%s'\n", __FILE__, __LINE__, \
+ __func__, #exp); \
+ } else { \
+ printf("\x1B[32m[PASS]\x1B[0m %s:%d: %s: Test '%s'\n", __FILE__, __LINE__, \
+ __func__, #exp); \
+ }
+
void test_all(struct vid_info *vid_info)
{
- heap_init(0x00f00000);
- boot_passed = vid_info;
-
// Serial connection
serial_install();
serial_print("\nConnected testing.\n");
- assert(vid_info && vid_info->mode && vid_info->vbe);
+
+ // Boot passed
+ check(vid_info && vid_info->mode && vid_info->vbe);
+
+ // Test malloc
+ heap_init(0x00f00000);
+ u32 *a = malloc(a_mag);
+ u32 *b = malloc(b_mag);
+ check(a[-1] == a_mag);
+ check(a[a_mag] == b_mag);
+ check(b[-1] == b_mag);
+
+ // Test math
+ check(pow(2, 3) == 8);
+ check(pow(0, 3) == 0);
+ check(pow(0, 0) == 1);
+
+ // Test conv
+ check(atoi("42") == 42);
+ check(strcmp(htoa(0x42), "42") == 0);
+ check(htoi("42") == 0x42);
+ check(strcmp(itoa(42), "42") == 0);
+
+ boot_passed = vid_info;
// Install drivers
interrupts_install();
@@ -28,7 +62,5 @@ void test_all(struct vid_info *vid_info)
keyboard_install();
mouse_install();
- ls_root();
-
idle();
}