Lines Matching full:should
38 zassert_equal(head, stub, "Head should point at stub"); in ZTEST()
39 zassert_equal(tail, stub, "Tail should point at stub"); in ZTEST()
40 zassert_is_null(next, "Next should be null"); in ZTEST()
43 zassert_is_null(node, "Pop on empty queue should return null"); in ZTEST()
49 zassert_equal(head, &push_pop_nodes[0], "Queue head should point at push_pop_node"); in ZTEST()
51 zassert_is_null(next, NULL, "push_pop_node next should point at null"); in ZTEST()
53 zassert_equal(next, &push_pop_nodes[0], "Queue stub should point at push_pop_node"); in ZTEST()
56 zassert_equal(tail, stub, "Tail should point at stub"); in ZTEST()
61 zassert_not_equal(node, stub, "Pop should not return stub"); in ZTEST()
62 zassert_not_null(node, "Pop should not return null"); in ZTEST()
64 "Pop should return push_pop_node %p, instead was %p", in ZTEST()
68 zassert_is_null(node, "Pop on empty queue should return null"); in ZTEST()
126 zassert_not_equal(n, &mpsc_q.stub, "mpsc should not produce stub"); in mpsc_consumer()
161 * This can and should be validated on SMP machines where incoherent