summaryrefslogtreecommitdiff
path: root/test/selftest.c
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-13 23:26:47 +0200
committerMiguel <m.i@gmx.at>2018-09-13 23:26:47 +0200
commit1195ca0bd84693fd56f6d34a9f2de3107b9820bf (patch)
treefc73d628f194af903e8cae62ce0df5f240732f75 /test/selftest.c
parent877c113518788babd6f633592c23f04f355bc30e (diff)
ext2 review
Diffstat (limited to 'test/selftest.c')
-rw-r--r--test/selftest.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/selftest.c b/test/selftest.c
deleted file mode 100644
index ef0b80a..0000000
--- a/test/selftest.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "kernel.h"
-#include "log.h"
-
-void selftest_stack_overflow()
-{
- klog("recurse..");
- selftest_stack_overflow();
-}
-
-void selftest_run()
-{
- klog ("RUNNING SOME IN-KERNEL SELFTESTS");
- selftest_stack_overflow();
-}