This commit is contained in:
Henrik Rydgard 2013-03-07 00:59:03 +01:00
parent 6702f0c78c
commit 7ba1664f8b

View File

@ -122,8 +122,8 @@ void RunTests()
o = o.substr(0, o.size() - 1); // For some reason we get some extra character o = o.substr(0, o.size() - 1); // For some reason we get some extra character
if (e != o) { if (e != o) {
ELOG("DIFF on line %i!", line); ELOG("DIFF on line %i!", line);
ILOG("O: %s", e.c_str()); ILOG("O: %s", o.c_str());
ILOG("E: %s", o.c_str()); ILOG("E: %s", e.c_str());
} }
if (expected.eof()) { if (expected.eof()) {
break; break;