summaryrefslogtreecommitdiff
path: root/utests/utest.hpp
diff options
context:
space:
mode:
authorPan Xiuli <xiuli.pan@intel.com>2016-08-12 16:51:00 +0800
committerYang Rong <rong.r.yang@intel.com>2016-08-12 18:29:33 +0800
commit116a365aefeb8eadf85fc787b9720caaafe30b2a (patch)
treed9a50429adb30749178425543ff14bc3b3dd740f /utests/utest.hpp
parent4889cdf76678eeda085e2bfc49c7a57e2ee0a6f9 (diff)
downloadbeignet-116a365aefeb8eadf85fc787b9720caaafe30b2a.tar.gz
Utest: Fix utest case with issues value
With issues is the 4th arguments. Signed-off-by: Pan Xiuli <xiuli.pan@intel.com> Reviewed-by: Yang Rong <rong.r.yang@intel.com>
Diffstat (limited to 'utests/utest.hpp')
-rw-r--r--utests/utest.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utests/utest.hpp b/utests/utest.hpp
index 6ecbaf79..3e9f077e 100644
--- a/utests/utest.hpp
+++ b/utests/utest.hpp
@@ -98,7 +98,7 @@ struct UTest
/*! Register a test case which has issue to be fixed */
#define MAKE_UTEST_FROM_FUNCTION_WITH_ISSUE(FN) \
static void __ANON__##FN##__(void) { UTEST_EXPECT_SUCCESS(FN()); } \
- static const UTest __##FN##__(__ANON__##FN##__, #FN, true);
+ static const UTest __##FN##__(__ANON__##FN##__, #FN, false ,true);
/*! Turn a function into a unit performance test */
#define MAKE_BENCHMARK_FROM_FUNCTION_KEEP_PROGRAM(FN, KEEP_PROGRAM, ...) \