From d1112609f2122b74fad1df1ea86ac14c8a5b101e Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 7 Apr 2021 19:12:46 +0200 Subject: [chattymalloc] move to gitlab.cs.fau.de repo, bump version and improve trace name --- allocbench/allocators/chattymalloc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/allocbench/allocators/chattymalloc.py b/allocbench/allocators/chattymalloc.py index 0cbcb88..b410733 100644 --- a/allocbench/allocators/chattymalloc.py +++ b/allocbench/allocators/chattymalloc.py @@ -24,14 +24,14 @@ and saves each call and its result to a memory mapped output file. from allocbench.artifact import GitArtifact from allocbench.allocator import Allocator -VERSION = "e237a876227396203abae3872754ffaf8cc7e180" +VERSION = "9d8412917f455ea08fa086e0f668ea5725cb324a" class Chattymalloc(Allocator): """Chattymalloc definition for allocbench""" sources = GitArtifact("chattymalloc", - "https://github.com/fischerling/chattymalloc") + "https://gitlab.cs.fau.de/aj46ezos/chattymalloc") def __init__(self, name, **kwargs): @@ -44,7 +44,7 @@ class Chattymalloc(Allocator): ] self.ld_preload = "{dir}/libchattymalloc.so" - self.cmd_prefix = "env CHATTYMALLOC_FILE={{result_dir}}/{{perm}}.trace" + self.cmd_prefix = "env CHATTYMALLOC_FILE={{result_dir}}/{{perm}}-%d.trace" self.analyze_alloc = True super().__init__(name, **kwargs) -- cgit v1.2.3