Changed the symbol for error-code skipped tests to distinguish from succesfull error-code checks in the correctness tests

This commit is contained in:
Cedric Nugteren 2016-06-27 11:27:54 +02:00
parent 8f7131bd90
commit fdfbc9af13

View file

@ -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 {