Refactor proc_test to comply with new policy.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 9 Aug 2008 10:08:34 +0000 (10:08 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 9 Aug 2008 10:08:34 +0000 (10:08 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1586 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/kern/proc.h
bertos/kern/proc_test.c

index 87fed5e1bbcdae306939c177aea98d25c40e3bae..0071ca13f41d3b779ab7630162598dae8aaaab55 100644 (file)
@@ -60,7 +60,10 @@ struct Process *proc_new_with_name(const char* name, void (*entry)(void), iptr_t
 
 void proc_exit(void);
 void proc_switch(void);
-void proc_test(void);
+int proc_testSetup(void);
+int proc_testRun(void);
+int proc_testTearDown(void);
+
 struct Process *proc_current(void);
 iptr_t proc_current_user_data(void);
 void proc_rename(struct Process *proc, const char* name);
index 96c4a9bdf7c88eb3a20e5f26b3f55f28e57ac1e6..79b7660e1fb2e858f9bc16b925fdd48fb1d5b8f1 100644 (file)
@@ -39,8 +39,7 @@
 
 #include <kern/proc.h>
 #include <drv/timer.h>
-
-#warning FIXME: Review this test and refactor for all target.
+#include <cfg/test.h>
 
 /**
  * Proc scheduling test subthread 1
@@ -71,21 +70,35 @@ static void proc_test_thread2(void)
 static cpustack_t proc_test_stack1[CONFIG_PROC_DEFSTACKSIZE / sizeof(cpustack_t)];
 static cpustack_t proc_test_stack2[CONFIG_PROC_DEFSTACKSIZE / sizeof(cpustack_t)];
 
+
+int proc_testSetup(void)
+{
+       kdbg_init();
+       proc_init();
+       IRQ_ENABLE;
+       timer_init();
+       return 0;
+}
+
+int proc_testTearDown(void)
+{
+       return 0;
+}
+
 /**
  * Process scheduling test
  */
-void 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);
+       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);
+       kdump(proc_test_stack2 + sizeof(proc_test_stack2) - 64, 64);
 
        for (int i = 0; i < 30; ++i)
        {
@@ -93,4 +106,22 @@ void proc_test(void)
                timer_delay(93);
                proc_switch();
        }
+       return 0;
 }
+#warning Fix test to comply to new policy.
+#if 0
+/*
+ * FIXME: to be compiled as a single file 
+ * the kernel module needs the assembly switch function
+ * and the idle() that lay in a emulator cpp file.
+ * How can we fix this?
+ */
+#include TEST_ONLY(drv/kdebug.c)
+#include TEST_ONLY(kern/proc.c)
+#include TEST_ONLY(drv/timer.c)
+#include TEST_ONLY(mware/formatwr.c)
+#include TEST_ONLY(mware/hex.c)
+#include TEST_ONLY(os/hptime.c)
+
+TEST_MAIN(proc);
+#endif