[Intel-gfx] [PATCH i-g-t] igt/core: Return condition result from igt_warn_on*()
Lyude
lyude at redhat.com
Tue Feb 7 17:54:20 UTC 2017
This allows us to be a little more flexible with how we use
igt_warn_on() and igt_warn_on_f() by allowing us to write statements
like this:
if (igt_warn_on(scary_condition)) {
/* some error handling... */
}
Signed-off-by: Lyude <lyude at redhat.com>
---
lib/igt_core.h | 25 ++++++++++++++++---------
1 file changed, 16 insertions(+), 9 deletions(-)
diff --git a/lib/igt_core.h b/lib/igt_core.h
index b669de3..51b98d8 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -828,12 +828,16 @@ extern enum igt_log_level igt_log_level;
* Should be used everywhere where a test checks results to decide about
* printing warnings. This is useful to streamline the test logic since it
* allows for a more flat code control flow, similar to igt_assert()
+ *
+ * This macro also returns the value of @condition.
*/
-#define igt_warn_on(condition) do {\
- if (condition) \
- igt_warn("Warning on condition %s in fucntion %s, file %s:%i\n", \
+#define igt_warn_on(condition) ({ \
+ typeof(condition) ret__ = (condition); \
+ if (ret__) \
+ igt_warn("Warning on condition %s in function %s, file %s:%i\n", \
#condition, __func__, __FILE__, __LINE__); \
- } while (0)
+ ret__; \
+ })
/**
* igt_warn_on_f:
@@ -850,15 +854,18 @@ extern enum igt_log_level igt_log_level;
*
* In addition to the plain igt_warn_on_f() helper this allows to print
* additional information (again as warnings) to help debugging test failures.
+ *
+ * It also returns the value of @condition.
*/
-#define igt_warn_on_f(condition, f...) do {\
- if (condition) {\
- igt_warn("Warning on condition %s in fucntion %s, file %s:%i\n", \
+#define igt_warn_on_f(condition, f...) ({ \
+ typeof(condition) ret__ = (condition); \
+ if (ret__) {\
+ igt_warn("Warning on condition %s in function %s, file %s:%i\n", \
#condition, __func__, __FILE__, __LINE__); \
igt_warn(f); \
} \
- } while (0)
-
+ ret__; \
+ })
void igt_set_timeout(unsigned int seconds,
const char *op);
--
2.9.3
More information about the Intel-gfx
mailing list