| 35 | #endif /* RT_USING_HEAP */ |
| 36 | |
| 37 | static void test_mq_init(void) |
| 38 | { |
| 39 | rt_err_t ret; |
| 40 | ret = rt_mq_init(&static_mq,"testmq1", mq_buf, MSG_SIZE, sizeof(mq_buf), RT_IPC_FLAG_FIFO); |
| 41 | uassert_true(ret == RT_EOK); |
| 42 | } |
| 43 | |
| 44 | static void test_mq_create(void) |
| 45 | { |
nothing calls this directly
no test coverage detected