X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fkern%2Fproc_test.c;h=e06e984f660aef3581416d1c60758e47d75fefe9;hb=d1f0bb27ca62bed91fe82f3992502034bee59a4e;hp=4c2f3126d76feea80fea461fa709c70defb6d97b;hpb=791e167e053bdd9250d34a9a5ccae6ccde4d6679;p=bertos.git diff --git a/bertos/kern/proc_test.c b/bertos/kern/proc_test.c index 4c2f3126..e06e984f 100644 --- a/bertos/kern/proc_test.c +++ b/bertos/kern/proc_test.c @@ -1,58 +1,135 @@ +/** + * \file + * + * + * + * \brief Test kernel process. + * + * \version $Id$ + * \author Daniele Basile + */ #include +#include +#include + #include +#include -/** +/* * Proc scheduling test subthread 1 */ -static void NORETURN proc_test_thread1(void) +static void proc_test1(void) { - for (;;) + for (int i = 0; i < 30; ++i) { - kputs(">task 1\n"); + kputs("> test1\n"); timer_delay(50); - proc_switch(); + proc_yield(); } } -/** +/* * Proc scheduling test subthread 2 */ -static void NORETURN proc_test_thread2(void) +static void proc_test2(void) { - for (;;) + for (int i = 0; i < 30; ++i) { - kputs(">task 2\n"); + kputs("> test2\n"); timer_delay(75); - proc_switch(); } } -static cpustack_t proc_test_stack1[CONFIG_PROC_DEFSTACKSIZE / sizeof(cpustack_t)]; -static cpustack_t proc_test_stack2[CONFIG_PROC_DEFSTACKSIZE / sizeof(cpustack_t)]; +static cpu_stack_t proc_test1_stack[CONFIG_KERN_MINSTACKSIZE / sizeof(cpu_stack_t)]; +static cpu_stack_t proc_test2_stack[CONFIG_KERN_MINSTACKSIZE / sizeof(cpu_stack_t)]; + /** - * Proc scheduling test + * Process scheduling test */ -void NORETURN proc_test(void) +int proc_testRun(void) { - proc_new(proc_test_thread1, NULL, sizeof(proc_test_stack1), proc_test_stack1); - proc_new(proc_test_thread2, NULL, sizeof(proc_test_stack2), proc_test_stack2); - kputs("Created tasks\n"); - - kputs("stack1:\n"); -// #warning FIXME - kdump(proc_test_stack1+sizeof(proc_test_stack1)-64, 64); - kputs("stack2:\n"); -// #warning FIXME - kdump(proc_test_stack2+sizeof(proc_test_stack1)-64, 64); - - for (;;) + proc_new(proc_test1, NULL, sizeof(proc_test1_stack), proc_test1_stack); + proc_new(proc_test2, NULL, sizeof(proc_test2_stack), proc_test2_stack); + kputs("Processes created\n"); + + for (int i = 0; i < 30; ++i) { - kputs(">main task\n"); + kputs("> main\n"); timer_delay(93); - proc_switch(); + monitor_report(); + proc_yield(); } + return 0; +} - ASSERT(false); +#if UNIT_TEST + +int proc_testSetup(void) +{ + kdbg_init(); + + #if CONFIG_KERN_PREEMPT + irq_init(); + #endif + + timer_init(); + + proc_init(); + return 0; } + +int proc_testTearDown(void) +{ + return 0; +} + +#include +#include +#include +#include +#include +#if CONFIG_KERN_PREEMPT + #include + #include +#else + #include + // FIXME: we need to link with the switch asm code too! +#endif +#include +#include +#include +#include +#include + +TEST_MAIN(proc); + +#endif // _TEST