summaryrefslogtreecommitdiff
path: root/test/test.h
diff options
context:
space:
mode:
authorU. Artie Eoff <ullysses.a.eoff@intel.com>2016-09-28 13:36:01 -0700
committerSean V Kelley <seanvk@posteo.de>2016-10-03 11:30:09 -0700
commit8b876d6cd7ae8911bef38de673731556e300999f (patch)
tree4ba2f4d499bda5b84e6b87df63405602860109d5 /test/test.h
parentfa3d1c3799c2633ff49fffb9dc6fc684e2db6565 (diff)
downloadlibva-intel-driver-8b876d6cd7ae8911bef38de673731556e300999f.tar.gz
test: move ASSERT_NO_FAILURE macro to test.h
Both jpeg decode and encode test files use this macro. So move it to the common test.h header to avoid duplicating it. Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de>
Diffstat (limited to 'test/test.h')
-rw-r--r--test/test.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test.h b/test/test.h
index afca9a5e..000284a2 100644
--- a/test/test.h
+++ b/test/test.h
@@ -66,6 +66,10 @@
#define ASSERT_PTR_NULL(ptr) \
ASSERT_TRUE(NULL == (ptr))
+#define ASSERT_NO_FAILURE(statement) \
+ statement; \
+ ASSERT_FALSE(HasFailure());
+
class VaapiStatus
{
public: