Searched refs:munit_assert_type (Results 1 – 1 of 1) sorted by relevance
| /freebsd/sys/contrib/openzfs/tests/unit/ |
| H A D | munit.h | 238 #define munit_assert_type(T, fmt, a, op, b) \ macro 248 munit_assert_type(short, MUNIT_SHORT_MODIFIER "d", a, op, b) 250 munit_assert_type(unsigned short, MUNIT_SHORT_MODIFIER "u", a, op, b) 251 #define munit_assert_int(a, op, b) munit_assert_type(int, "d", a, op, b) 253 munit_assert_type(unsigned int, "u", a, op, b) 254 #define munit_assert_long(a, op, b) munit_assert_type(long int, "ld", a, op, b) 256 munit_assert_type(unsigned long int, "lu", a, op, b) 258 munit_assert_type(long long int, "lld", a, op, b) 260 munit_assert_type(unsigned long long int, "llu", a, op, b) 263 munit_assert_type(size_t, MUNIT_SIZE_MODIFIER "u", a, op, b) [all …]
|