tests/utils.cpp: Use binary mode for reading test results, to preserve EOL

pull/1414/head
Mario Emmenlauer 6 years ago
parent 966d827d35
commit 58a5e654f9

@ -21,7 +21,7 @@ void prepare_logdir()
std::string file_contents(const std::string &filename) std::string file_contents(const std::string &filename)
{ {
std::ifstream ifs(filename); std::ifstream ifs(filename, std::ios_base::binary);
if (!ifs) if (!ifs)
{ {
throw std::runtime_error("Failed open file "); throw std::runtime_error("Failed open file ");

Loading…
Cancel
Save