aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/Validation.h
diff options
context:
space:
mode:
authorsteniu01 <steven.niu@arm.com>2017-08-31 13:49:08 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit172c58d17cef75fd8b6850609de4f074c8bcdd98 (patch)
treeed1081b76c8eea526bb0968b2141983230a9df85 /tests/validation/Validation.h
parent64ebe5b392b8135ec939b63596ffb8567a3e3248 (diff)
downloadComputeLibrary-172c58d17cef75fd8b6850609de4f074c8bcdd98.tar.gz
COMPMID-345 Fix the failure counter wrongly logging issue
Change-Id: Ic917b0361e602fadb8dbff69c6bec5582d6b261d Reviewed-on: http://mpd-gerrit.cambridge.arm.com/85956 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/validation/Validation.h')
-rw-r--r--tests/validation/Validation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/Validation.h b/tests/validation/Validation.h
index db95e06058..49c7d832c1 100644
--- a/tests/validation/Validation.h
+++ b/tests/validation/Validation.h
@@ -316,7 +316,7 @@ void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const V
ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
ARM_COMPUTE_TEST_INFO("tolerance = " << std::setprecision(5) << framework::make_printable(static_cast<typename U::value_type>(tolerance_value)));
- ARM_COMPUTE_EXPECT_EQUAL(target_value, reference_value, framework::LogLevel::DEBUG);
+ framework::ARM_COMPUTE_PRINT_INFO();
++num_mismatches;
}