From f6059b26eda595b4c17a56be8a70cb6de33039d9 Mon Sep 17 00:00:00 2001 From: MaxThevenet Date: Mon, 17 Aug 2020 15:44:04 +0200 Subject: fix performance IO automated test (#1248) --- Tools/PerformanceTests/functions_perftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tools/PerformanceTests/functions_perftest.py') diff --git a/Tools/PerformanceTests/functions_perftest.py b/Tools/PerformanceTests/functions_perftest.py index cea2b6107..6af4189b6 100644 --- a/Tools/PerformanceTests/functions_perftest.py +++ b/Tools/PerformanceTests/functions_perftest.py @@ -191,7 +191,7 @@ def extract_dataframe(filename, n_steps): line_match_looptime = re.search('\nWarpX::Evolve().*', search_area) time_wo_initialization = float(line_match_looptime.group(0).split()[3]) # New, might break something - line_match_WritePlotFile = re.search('\nFlushFormatPlotfile::WriteToFile().*', search_area) + line_match_WritePlotFile = re.search('\nDiagnostics::FilterComputePackFlush().*', search_area) if line_match_WritePlotFile is not None: time_WritePlotFile = float(line_match_WritePlotFile.group(0).split()[3]) else: -- cgit v1.2.3