From 99738c6725385dd261831caedf235ac4accdbf62 Mon Sep 17 00:00:00 2001 From: raiqarasool Date: Fri, 4 Oct 2024 12:18:31 -0400 Subject: [PATCH] Fixed benchmarking throwing malloc_consolidate() error in the end --- src/libraries/JANA/CLI/JBenchmarker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/JANA/CLI/JBenchmarker.cc b/src/libraries/JANA/CLI/JBenchmarker.cc index 34a2cf2c1..4e1ef7f85 100644 --- a/src/libraries/JANA/CLI/JBenchmarker.cc +++ b/src/libraries/JANA/CLI/JBenchmarker.cc @@ -159,7 +159,7 @@ void JBenchmarker::RunUntilFinished() { << " cd " << m_output_dir << "\n" << " $JANA_HOME/bin/jana-plot-scaletest.py\n" << LOG_END; } - m_app->Stop(); + m_app->Stop(true); }