Lines Matching refs:zassert_ok

81 		zassert_ok(pthread_create(&newthread[i], NULL,  in ZTEST()
105 zassert_ok(strcmp(rec_data, send_data), "Error in data reception. exp: %s act: %s", in notify_function_basic()
108 zassert_ok(mq_close(mqd), "Unable to close message queue descriptor."); in notify_function_basic()
133 zassert_ok(mq_notify(mqd, &not), "Unable to set notification."); in ZTEST()
135 zassert_ok(mq_send(mqd, send_data, MESSAGE_SIZE, 0), "Unable to send message"); in ZTEST()
139 zassert_ok(mq_close(mqd), "Unable to close message queue descriptor."); in ZTEST()
140 zassert_ok(mq_unlink(queue), "Unable to unlink queue"); in ZTEST()
154 zassert_ok(strcmp(rec_data, send_data), "Error in data reception. exp: %s act: %s", in notify_function_thread()
157 zassert_ok(mq_close(mqd), "Unable to close message queue descriptor."); in notify_function_thread()
182 zassert_ok(mq_notify(mqd, &not), "Unable to set notification."); in ZTEST()
184 zassert_ok(mq_send(mqd, send_data, MESSAGE_SIZE, 0), "Unable to send message"); in ZTEST()
190 zassert_ok(mq_close(mqd), "Unable to close message queue descriptor."); in ZTEST()
191 zassert_ok(mq_unlink(queue), "Unable to unlink queue"); in ZTEST()
214 zassert_ok(mq_send(mqd, send_data, MESSAGE_SIZE, 0), "Unable to send message"); in ZTEST()
216 zassert_ok(mq_notify(mqd, &not), "Unable to set notification."); in ZTEST()
226 zassert_ok(mq_send(mqd, send_data, MESSAGE_SIZE, 0), "Unable to send message"); in ZTEST()
230 zassert_ok(mq_close(mqd), "Unable to close message queue descriptor."); in ZTEST()
231 zassert_ok(mq_unlink(queue), "Unable to unlink queue"); in ZTEST()
262 zassert_ok(mq_notify(mqd, &not), in ZTEST()
269 zassert_ok(mq_notify(mqd, NULL), "Unable to remove notification from the message queue."); in ZTEST()
271 zassert_ok(mq_close(mqd), "Unable to close message queue descriptor."); in ZTEST()
272 zassert_ok(mq_unlink(queue), "Unable to unlink queue"); in ZTEST()
291 zassert_ok(mq_unlink(q1), "Unable to unlink q1"); in ZTEST()
295 zassert_ok(mq_unlink(q2), "Unable to unlink q2"); in ZTEST()
297 zassert_ok(mq_close(mqd1), "Unable to close message queue 1 descriptor."); in ZTEST()
298 zassert_ok(mq_close(mqd2), "Unable to close message queue 2 descriptor."); in ZTEST()