Skip to content

Commit

Permalink
Test limit for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Jul 24, 2024
1 parent d26ebc0 commit 4ddb404
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/tests/src/libs/antares/study/test_study.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,14 @@ BOOST_FIXTURE_TEST_CASE(check_filename_limit, OneAreaStudy)
BOOST_CHECK(study->checkForFilenameLimits(false));
BOOST_CHECK(study->checkForFilenameLimits(true, "abc"));

std::string str(10000, 'a');
study->areas[0]->id = str;
study->areas[0]->name = str;
BOOST_CHECK(study->checkForFilenameLimits(true)); // areaname limits size to 128

#ifdef YUNI_OS_WINDOWS
std::string area1name(128, 'a');
std::string area2name(128, 'b');
study->areas[0]->name = area1name;
study->areaAdd(area2name);
BOOST_CHECK(!study->checkForFilenameLimits(true)); // areaname limits size to 128
#endif
}

BOOST_AUTO_TEST_SUITE_END() // version

0 comments on commit 4ddb404

Please sign in to comment.