aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-27 21:18:22 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-27 21:18:22 +0200
commitff68d3922a3d2686239700194c007222ca3794bf (patch)
treec441dd3b30ea6c48eefbc45bf1da1b5f92debaed
parentf0bca4a4103a3dbfc4862cbd76800395b23a74d8 (diff)
downloadallocbench-ff68d3922a3d2686239700194c007222ca3794bf.tar.gz
allocbench-ff68d3922a3d2686239700194c007222ca3794bf.zip
fix IDEAL_RSS_RE regex
-rw-r--r--src/benchmarks/dj_trace.py2
1 files changed, 1 insertions, 1 deletions
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$")