summaryrefslogtreecommitdiff
path: root/test/correctness/tester.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/correctness/tester.cpp')
-rw-r--r--test/correctness/tester.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/correctness/tester.cpp b/test/correctness/tester.cpp
index d1f3cbb2..fb85e609 100644
--- a/test/correctness/tester.cpp
+++ b/test/correctness/tester.cpp
@@ -70,28 +70,6 @@ T getAlmostInfNumber() {
return static_cast<T>(1e35); // used for correctness testing of TRSV and TRSM routines
}
-// Maximum number of test results printed on a single line
-template <typename T, typename U> const size_t Tester<T,U>::kResultsPerLine = size_t{64};
-
-// Error percentage is not applicable: error was caused by an incorrect status
-template <typename T, typename U> const float Tester<T,U>::kStatusError = -1.0f;
-
-// Constants holding start and end strings for terminal-output in colour
-template <typename T, typename U> const std::string Tester<T,U>::kPrintError = "\x1b[31m";
-template <typename T, typename U> const std::string Tester<T,U>::kPrintSuccess = "\x1b[32m";
-template <typename T, typename U> const std::string Tester<T,U>::kPrintWarning = "\x1b[35m";
-template <typename T, typename U> const std::string Tester<T,U>::kPrintMessage = "\x1b[1m";
-template <typename T, typename U> const std::string Tester<T,U>::kPrintEnd = "\x1b[0m";
-
-// Sets the output error coding
-template <typename T, typename U> const std::string Tester<T,U>::kSuccessData = kPrintSuccess + ":" + kPrintEnd;
-template <typename T, typename U> const std::string Tester<T,U>::kSuccessStatus = kPrintSuccess + "." + kPrintEnd;
-template <typename T, typename U> const std::string Tester<T,U>::kErrorData = kPrintError + "X" + kPrintEnd;
-template <typename T, typename U> const std::string Tester<T,U>::kErrorStatus = kPrintError + "/" + kPrintEnd;
-template <typename T, typename U> const std::string Tester<T,U>::kSkippedCompilation = kPrintWarning + "\\" + kPrintEnd;
-template <typename T, typename U> const std::string Tester<T,U>::kUnsupportedPrecision = kPrintWarning + "o" + kPrintEnd;
-template <typename T, typename U> const std::string Tester<T,U>::kUnsupportedReference = kPrintWarning + "-" + kPrintEnd;
-
// =================================================================================================
// General constructor for all CLBlast testers. It prints out the test header to stdout and sets-up