lib: add igt_assert_lt

Found one user in gem_wait.c

Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
This commit is contained in:
Daniel Vetter
2015-02-27 16:24:25 +01:00
parent e3f8eb58e6
commit 305fb1db5c
2 changed files with 14 additions and 1 deletions
+13
View File
@@ -381,6 +381,19 @@ void igt_exit(void) __attribute__((noreturn));
*/
#define igt_assert_lte(n1, n2) igt_assert_cmpint(n1, <=, >, n2)
/**
* igt_assert_lt:
* @n1: first integer
* @n2: second integer
*
* Fails (sub-)test if the second integers is strictly smaller than the first.
* Beware that for now this only works on integers.
*
* Like igt_assert(), but displays the values being compared on failure instead
* of simply printing the stringified expression.
*/
#define igt_assert_lt(n1, n2) igt_assert_cmpint(n1, <, >=, n2)
/**
* igt_require:
* @expr: condition to test