Searched refs:RET_FALSE (Results 1 – 2 of 2) sorted by relevance
| /system/ulib/unittest/include/unittest/ |
| A D | unittest.h | 407 #define RET_FALSE do { unittest_returns_early(); return false; } while (0) macro 599 UT_CMP(op, lhs, rhs, lhs_str, rhs_str, RET_FALSE, ##__VA_ARGS__) 608 #define ASSERT_TRUE(actual, ...) UT_TRUE(actual, RET_FALSE, ##__VA_ARGS__) 609 #define ASSERT_FALSE(actual, ...) UT_FALSE(actual, RET_FALSE, ##__VA_ARGS__) 610 #define ASSERT_NULL(actual, ...) UT_NULL(actual, RET_FALSE, ##__VA_ARGS__) 611 #define ASSERT_NONNULL(actual, ...) UT_NONNULL(actual, RET_FALSE, ##__VA_ARGS__) 612 …SSERT_BYTES_EQ(expected, actual, length, msg) UT_BYTES_EQ(expected, actual, length, msg, RET_FALSE) 613 …ne ASSERT_BYTES_NE(bytes1, bytes2, length, msg) UT_BYTES_NE(bytes1, bytes2, length, msg, RET_FALSE) 614 #define ASSERT_STR_EQ(str1, str2, ...) UT_STR_EQ(str1, str2, RET_FALSE, ##__VA_ARGS__) 615 #define ASSERT_STR_NE(str1, str2, ...) UT_STR_NE(str1, str2, RET_FALSE, ##__VA_ARGS__) [all …]
|
| /system/utest/crypto/ |
| A D | utils.h | 32 #define ASSERT_ZX(expr, status) UT_ZX(expr, status, RET_FALSE) 34 #define ASSERT_OK(expr) UT_ZX(expr, ZX_OK, RET_FALSE)
|
Completed in 5 milliseconds