From: Augustin Degomme Date: Tue, 17 May 2022 21:24:54 +0000 (+0000) Subject: cosmetics X-Git-Tag: v3.32~237 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1b947bf594dc981d2bd6798765f6700f98c0a20d cosmetics --- diff --git a/src/kernel/resource/profile/Profile_test.cpp b/src/kernel/resource/profile/Profile_test.cpp index 4834950c1e..abcee5aa2e 100644 --- a/src/kernel/resource/profile/Profile_test.cpp +++ b/src/kernel/resource/profile/Profile_test.cpp @@ -151,7 +151,7 @@ TEST_CASE("kernel::profile: Resource profiles, defining the external load", "ker using simgrid::kernel::profile::Distribution; std::vector got = trace2selist("STOCHASTIC\n" "DET 0 UNIF 10 20"); - + std::vector want; want.emplace_back(Distribution::DET, std::vector{0}, Distribution::UNIF, std::vector{10, 20}); @@ -166,7 +166,7 @@ TEST_CASE("kernel::profile: Resource profiles, defining the external load", "ker "NORMAL 25 10 DET 3\n" "UNIF 10 20 NORMAL 25 10\n" "DET 5 UNIF 5 25"); - + std::vector want; want.emplace_back(Distribution::DET, std::vector{0}, Distribution::DET, std::vector{4}); want.emplace_back(Distribution::NORM, std::vector{25, 10}, Distribution::DET, std::vector{3});