diff options
-rw-r--r-- | kern/kernel.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kern/kernel.c b/kern/kernel.c index 434297d3..755f42e6 100644 --- a/kern/kernel.c +++ b/kern/kernel.c @@ -19,6 +19,7 @@ #include <kern/kernel.h> #include <kern/thread.h> #include <machine/cpu.h> +#include <test/test.h> #include <vm/vm_page.h> void __init @@ -29,6 +30,10 @@ kernel_main(void) init_setup(); vm_page_log_info(); +#ifdef X15_RUN_TEST_MODULE + test_setup(); +#endif /* X15_RUN_TEST_MODULE */ + /* * Enabling application processors is done late in the boot process for * two reasons : |