aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-09-04 23:16:30 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-09-04 23:16:30 +0200
commit9b16092031b306c7dc49dde70df74461ebea4a23 (patch)
tree5d2ef42b07070fe3486a78ccc63c878b049afb07
parent5ae63c71fcbabad8ad5a3a13d7fc19493c1cc1c5 (diff)
downloadallocbench-9b16092031b306c7dc49dde70df74461ebea4a23.tar.gz
allocbench-9b16092031b306c7dc49dde70df74461ebea4a23.zip
add reset command to supermalloc definition
-rw-r--r--src/allocators/supermalloc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/allocators/supermalloc.py b/src/allocators/supermalloc.py
index b895983..130dd47 100644
--- a/src/allocators/supermalloc.py
+++ b/src/allocators/supermalloc.py
@@ -25,7 +25,8 @@ VERSION = "709663fb81ba091b0a78058869a644a272f4163d"
sources = AllocatorSources("SuperMalloc",
retrieve_cmds=["git clone https://github.com/kuszmaul/SuperMalloc"],
- prepare_cmds=[f"git checkout {VERSION}"])
+ prepare_cmds=[f"git checkout {VERSION}"],
+ reset_cmds=["git reset --hard"])
class SuperMalloc(Allocator):