From e11a4ebc18ff092ae85548b2e384f58de773322f Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 29 Jan 2019 16:31:30 +0100 Subject: [PATCH] Improve coverage, even with high log threshold. --- teshsuite/xbt/parmap_bench/parmap_bench.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"); -- 2.20.1