| 43 | } |
| 44 | |
| 45 | static rt_err_t utest_tc_init(void) |
| 46 | { |
| 47 | lwp = lwp_create(0); |
| 48 | if (lwp) |
| 49 | lwp_user_space_init(lwp, 1); |
| 50 | else |
| 51 | return -RT_ENOMEM; |
| 52 | return RT_EOK; |
| 53 | } |
| 54 | |
| 55 | static rt_err_t utest_tc_cleanup(void) |
| 56 | { |
nothing calls this directly
no test coverage detected