aboutsummaryrefslogtreecommitdiff
path: root/mysql.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2018-08-13 19:40:02 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2018-08-13 19:40:02 +0200
commit655654f70c731df1a76dd5ff7e2475da6cbc3158 (patch)
treec544b23b1ef9628d7bf51664d6fdc285623bca9a /mysql.py
parentc4347a4dc5ea8e87cf6230addcdff5a5b54ab82b (diff)
downloadallocbench-655654f70c731df1a76dd5ff7e2475da6cbc3158.tar.gz
allocbench-655654f70c731df1a76dd5ff7e2475da6cbc3158.zip
don't save memusage of chattymalloc
Diffstat (limited to 'mysql.py')
-rw-r--r--mysql.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql.py b/mysql.py
index 95feb80..dc9faf5 100644
--- a/mysql.py
+++ b/mysql.py
@@ -186,7 +186,8 @@ class Benchmark_MYSQL( Benchmark ):
if "[heap]" in m:
heap_size["heap_end"] = m.size
- self.results["memusage"][tname].append(heap_size)
+ if tname != "chattymalloc":
+ self.results["memusage"][tname].append(heap_size)
self.server.kill()
self.server.wait()