From ff68d3922a3d2686239700194c007222ca3794bf Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Tue, 27 Aug 2019 21:18:22 +0200 Subject: fix IDEAL_RSS_RE regex --- src/benchmarks/dj_trace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/benchmarks/dj_trace.py b/src/benchmarks/dj_trace.py index 29b0f43..8f3137f 100644 --- a/src/benchmarks/dj_trace.py +++ b/src/benchmarks/dj_trace.py @@ -19,7 +19,7 @@ CYCLES_RE = re.compile(f"^{TIME_RE} cycles$") CPU_TIME_RE = re.compile(f"^{TIME_RE} usec across.*threads$") MAX_RSS_RE = re.compile(f"^{RSS_RE} Kb Max RSS") -IDEAL_RSS_RE = re.compile("^{RSS_RE} Kb Max Ideal RSS") +IDEAL_RSS_RE = re.compile(f"^{RSS_RE} Kb Max Ideal RSS") MALLOC_RE = re.compile(f"^Avg malloc time:\\s*{TIME_RE} in.*calls$") CALLOC_RE = re.compile(f"^Avg calloc time:\\s*{TIME_RE} in.*calls$") -- cgit v1.2.3