summaryrefslogtreecommitdiff
path: root/test/selftest.c
diff options
context:
space:
mode:
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();
-}