Merge pull request #1262 from knilch0r/patch-1

unit-testsuites.cpp: fix hangup if file not found
This commit is contained in:
Niels Lohmann 2018-09-29 10:58:10 +02:00 committed by GitHub
commit 95432c34f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1346,13 +1346,11 @@ TEST_CASE("Big List of Naughty Strings")
SECTION("roundtripping") SECTION("roundtripping")
{ {
std::ifstream f("test/data/big-list-of-naughty-strings/blns.json"); std::ifstream f("test/data/big-list-of-naughty-strings/blns.json");
std::string line;
while (not f.eof()) // read lines one by one, bail out on error or eof
while (getline(f, line))
{ {
// read line
std::string line;
getline(f, line);
// trim whitespace // trim whitespace
line = trim(line); line = trim(line);