summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-01-15 17:17:40 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-01-15 17:17:40 +0100
commit4a4be0c3a5e603a9c0c4c7aebcb660b5e62b99ad (patch)
treed5a3dff4078d3dfb97f960db7e69fdfdb481061a /test
parent681a465b355d0fed7a82644f4472a5afa024721e (diff)
Prints additional information in verbose/debug mode
Diffstat (limited to 'test')
-rw-r--r--test/correctness/testblas.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/correctness/testblas.cpp b/test/correctness/testblas.cpp
index 5fddb37b..7c64855a 100644
--- a/test/correctness/testblas.cpp
+++ b/test/correctness/testblas.cpp
@@ -138,7 +138,10 @@ void TestBlas<T,U>::TestRegular(std::vector<Arguments<U>> &test_vector, const st
// Don't continue with CBLAS if there are incorrect parameters
if (compare_cblas_ && status2 != StatusCode::kSuccess) {
- if (verbose_) { fprintf(stdout, " -> "); std::cout << std::flush; }
+ if (verbose_) {
+ fprintf(stdout, " -> %d -> ", static_cast<int>(status2));
+ std::cout << std::flush;
+ }
TestErrorCodes(status2, status2, args);
continue;
}