summaryrefslogtreecommitdiff
path: root/src/kernel/core/test.c
diff options
context:
space:
mode:
authorAlex AUVOLAT <alexis211@gmail.com>2012-05-01 17:42:36 +0200
committerAlex AUVOLAT <alexis211@gmail.com>2012-05-01 17:42:36 +0200
commite9683297bf480f9590b0e5796f4520fb430e2e03 (patch)
tree93ef75cd154edf4c342d0a22cd56eb3670feb2b5 /src/kernel/core/test.c
parente8cf65c07d78e3cfbac953b1b97c51998a5900df (diff)
downloadTCE-e9683297bf480f9590b0e5796f4520fb430e2e03.tar.gz
TCE-e9683297bf480f9590b0e5796f4520fb430e2e03.zip
Now using Doug Lea's malloc for userland too. And improved stability.
Diffstat (limited to 'src/kernel/core/test.c')
-rw-r--r--src/kernel/core/test.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/kernel/core/test.c b/src/kernel/core/test.c
deleted file mode 100644
index 8f7b32c..0000000
--- a/src/kernel/core/test.c
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "test.h"
-#include "monitor.h"
-#include <mem/mem.h>
-#include "sys.h"
-
-static void test_run_kmalloc() {
- monitor_write("\tkmalloc:\n");
- int alloc_sizes[8] = { 10, 32, 16, 20, 64, 128, 32, 48 };
- int *ptrs[8] = { 0 };
- int t, i;
- for (t = 0; t < 4; t++) {
- for (i = 0; i < 8; i++) {
- monitor_writeDec(i); monitor_write(" alloc "); monitor_writeDec(alloc_sizes[i]);
- monitor_write(" : ");
- ptrs[i] = kmalloc(alloc_sizes[i]);
- ASSERT(ptrs[i] != 0);
- *ptrs[i] = i;
- monitor_writeHex((int)ptrs[i]); monitor_write("\n");
- }
- monitor_write("free : ");
- for (i = 0; i < 8; i++) {
- monitor_writeDec(i);
- ASSERT(*ptrs[i] == i);
- kfree(ptrs[i]);
- monitor_write(".");
- }
- monitor_write("\n");
- }
-}
-
-/* This function is called when the kernel starts up.
- It runs some basic unit tests (for the moment, only tests kmalloc/kfree) */
-void test_run() {
- monitor_write("Unit tests:\n");
- test_run_kmalloc();
- monitor_write(" >> Tests OK\n");
-}