From bea657669716c35f6f346a2b36fc60ac06954734 Mon Sep 17 00:00:00 2001 From: Vincent Payet Date: Thu, 25 Jul 2024 09:46:30 +0200 Subject: [PATCH] only for windows --- src/tests/src/libs/antares/study/test_study.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/src/libs/antares/study/test_study.cpp b/src/tests/src/libs/antares/study/test_study.cpp index 2e880c34b4..a8c2ee845b 100644 --- a/src/tests/src/libs/antares/study/test_study.cpp +++ b/src/tests/src/libs/antares/study/test_study.cpp @@ -301,14 +301,14 @@ BOOST_FIXTURE_TEST_CASE(check_filename_limit, OneAreaStudy) BOOST_CHECK(study->checkForFilenameLimits(false)); BOOST_CHECK(study->checkForFilenameLimits(true, "abc")); -//#ifdef YUNI_OS_WINDOWS +#ifdef YUNI_OS_WINDOWS std::string area1name(128, 'a'); std::string area2name(128, 'b'); study->areas[0]->name = area1name; auto areaB = study->areaAdd(area2name); AreaAddLinkBetweenAreas(areaA, areaB); BOOST_CHECK(!study->checkForFilenameLimits(true)); -//#endif +#endif } BOOST_AUTO_TEST_SUITE_END() // version