| 42 | } |
| 43 | |
| 44 | static void test_mq_create(void) |
| 45 | { |
| 46 | #ifdef RT_USING_HEAP |
| 47 | dynamic_mq = rt_mq_create("testmq2", MSG_SIZE, MAX_MSGS, RT_IPC_FLAG_FIFO); |
| 48 | uassert_true(dynamic_mq != RT_NULL); |
| 49 | #endif /* RT_USING_HEAP */ |
| 50 | } |
| 51 | |
| 52 | static void mq_send_case(rt_mq_t testmq) |
| 53 | { |
nothing calls this directly
no test coverage detected