summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-07-31 21:24:21 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2018-07-31 21:24:21 +0200
commit713d0f96b3dda04cbd9a2c5da3cb283a2d2719e0 (patch)
tree62b0a2957b56c788924ae4faf67b889434d72de8 /test/correctness
parentd749c4af7201a462f3ee2f2105528d14a9efa4d1 (diff)
Fixed an error reporting issue related to the canary region
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/testblas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/testblas.cpp b/test/correctness/testblas.cpp
index 3c92565e..d28aba40 100644
--- a/test/correctness/testblas.cpp
+++ b/test/correctness/testblas.cpp
@@ -239,7 +239,7 @@ void TestBlas<T,U>::TestRegular(std::vector<Arguments<U>> &test_vector, const st
}
// Tests the error count (should be zero)
- TestErrorCount(errors, get_id1_(args)*get_id2_(args), args);
+ TestErrorCount(errors, get_id1_(args)*get_id2_(args) + kCanarySize, args);
}
TestEnd();
}