summaryrefslogtreecommitdiff
path: root/test/selftest.c
blob: ef0b80acc34ef071491cb83434a8d32138d9ef50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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();
}