From: Arnaud Giersch Date: Tue, 29 Jan 2019 15:31:30 +0000 (+0100) Subject: Improve coverage, even with high log threshold. X-Git-Tag: v3_22~451 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e11a4ebc18ff092ae85548b2e384f58de773322f Improve coverage, even with high log threshold. --- diff --git a/teshsuite/xbt/parmap_bench/parmap_bench.cpp b/teshsuite/xbt/parmap_bench/parmap_bench.cpp index a36b80ab77..db7c43e831 100644 --- a/teshsuite/xbt/parmap_bench/parmap_bench.cpp +++ b/teshsuite/xbt/parmap_bench/parmap_bench.cpp @@ -64,7 +64,8 @@ static void fun_big_comp(unsigned* arg) static void bench_parmap(int nthreads, double timeout, e_xbt_parmap_mode_t mode, bool full_bench) { - XBT_INFO("** mode = %s", parmap_mode_name(mode).c_str()); + std::string mode_name = parmap_mode_name(mode); + XBT_INFO("** mode = %s", mode_name.c_str()); if (mode == XBT_PARMAP_FUTEX && not HAVE_FUTEX_H) { XBT_INFO(" not available");