diff options
| author | Miguel <m.i@gmx.at> | 2018-09-11 19:49:17 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-11 19:49:17 +0200 |
| commit | c9351caacd49c8442cc586f9e53a2dcc49a004aa (patch) | |
| tree | 7032ebdc1a6ff27043a3d2e81d897c2bf78731af /test | |
| parent | bd2c3fcfa2b562724667d7b83089b5ff1e2d33dc (diff) | |
cleaning up vmem etc..
Diffstat (limited to 'test')
| -rw-r--r-- | test/selftest.c | 13 | ||||
| -rw-r--r-- | test/selftest.h | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/test/selftest.c b/test/selftest.c new file mode 100644 index 0000000..e95b320 --- /dev/null +++ b/test/selftest.c @@ -0,0 +1,13 @@ +#include "kernel.h" + +void selftest_stack_overflow() +{ + klog("recurse.."); + selftest_stack_overflow(); +} + +void selftest_run() +{ + klog ("RUNNING SOME IN-KERNEL SELFTESTS"); + selftest_stack_overflow(); +} diff --git a/test/selftest.h b/test/selftest.h new file mode 100644 index 0000000..f95ebda --- /dev/null +++ b/test/selftest.h @@ -0,0 +1 @@ +void selftest_run(); |
