static bool filesMatch(const std::string& path1, const std::string& path2){INFO("While comparing files '" << path1 << "' and '" << path2 << "'");// etc...if (line1 != line2){INFO("Mismatch at line " << lineNo << ":\n"<< line1 << "\nvs\n" << line2);}// etc...}
CHECK( filesMatch(path1, path2) );