docs: Add documentation for igt_assert_u32()

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
This commit is contained in:
Damien Lespiau 2015-06-27 15:16:22 +01:00
parent 4dca31b2d6
commit f660d0a054

View File

@ -367,6 +367,14 @@ void igt_exit(void) __attribute__((noreturn));
* of simply printing the stringified expression.
*/
#define igt_assert_eq(n1, n2) igt_assert_cmpint(n1, ==, !=, n2)
/**
* igt_assert_eq_u32:
* @n1: first integer
* @n2: second integer
*
* Like igt_assert_eq(), but for uint32_t.
*/
#define igt_assert_eq_u32(n1, n2) igt_assert_cmpuint(n1, ==, !=, n2)
/**