mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-18 21:36:27 +00:00
docs: Add documentation for igt_assert_u32()
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
This commit is contained in:
parent
4dca31b2d6
commit
f660d0a054
@ -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)
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user