summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-06-27 11:27:54 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-06-27 11:27:54 +0200
commitfdfbc9af1399d8f5e5654bd5d4335ae5f6a12d52 (patch)
treefd8ffb0f4d1ecd6d94fe0bc0e0193196077ced91 /test/correctness
parent8f7131bd90eb256c7fd01e1cd084c8196cc89c06 (diff)
Changed the symbol for error-code skipped tests to distinguish from succesfull error-code checks in the correctness tests
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/tester.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/tester.hpp b/test/correctness/tester.hpp
index 5e5db6a1..422da9ed 100644
--- a/test/correctness/tester.hpp
+++ b/test/correctness/tester.hpp
@@ -58,7 +58,7 @@ class Tester {
const std::string kErrorStatus{kPrintError + "/" + kPrintEnd};
const std::string kSkippedCompilation{kPrintWarning + "\\" + kPrintEnd};
const std::string kUnsupportedPrecision{kPrintWarning + "o" + kPrintEnd};
- const std::string kUnsupportedReference{kPrintWarning + "." + kPrintEnd};
+ const std::string kUnsupportedReference{kPrintWarning + "-" + kPrintEnd};
// This structure combines the above log-entry with a status code an error percentage
struct ErrorLogEntry {