Home
last modified time | relevance | path

Searched refs:zexpect_not_equal (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/tests/posix/headers/src/
Dnetinet_in_h.c27 zexpect_not_equal(-1, offsetof(struct in_addr, s_addr)); in ZTEST()
29 zexpect_not_equal(-1, offsetof(struct sockaddr_in, sin_family)); in ZTEST()
30 zexpect_not_equal(-1, offsetof(struct sockaddr_in, sin_port)); in ZTEST()
31 zexpect_not_equal(-1, offsetof(struct sockaddr_in, sin_addr)); in ZTEST()
33 zexpect_not_equal(-1, offsetof(struct in6_addr, s6_addr)); in ZTEST()
36 zexpect_not_equal(-1, offsetof(struct sockaddr_in6, sin6_family)); in ZTEST()
37 zexpect_not_equal(-1, offsetof(struct sockaddr_in6, sin6_port)); in ZTEST()
40 zexpect_not_equal(-1, offsetof(struct sockaddr_in6, sin6_addr)); in ZTEST()
41 zexpect_not_equal(-1, offsetof(struct sockaddr_in6, sin6_scope_id)); in ZTEST()
65 zexpect_not_equal(-1, offsetof(struct ipv6_mreq, ipv6mr_multiaddr)); in ZTEST()
[all …]
/Zephyr-latest/tests/ztest/zexpect/src/
Dmain.c22 zexpect_not_equal(val, 5); in ZTEST()
114 zexpect_not_equal(5, 1); in ZTEST()
120 zexpect_not_equal(5, 5); in ZTEST()
/Zephyr-latest/tests/drivers/video/api/src/
Dvideo_emul.c73 zexpect_not_equal(fmt.pixelformat, 0x00000000, "should not store wrong formats"); in ZTEST()
/Zephyr-latest/subsys/testsuite/ztest/include/zephyr/
Dztest_assert.h668 #define zexpect_not_equal(a, b, ...) zexpect((a) != (b), #a " equal to " #b, ##__VA_ARGS__) macro