aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO4
-rw-r--r--src/allocator.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/TODO b/TODO
index c48667b..22537c1 100644
--- a/TODO
+++ b/TODO
@@ -4,6 +4,10 @@
- implement requirements for allocators
+- convert cmake build systems to make: espresso, cfrac
+
+- merge measurements if facts match
+
- Use https://www4.cs.fau.de/~flow/allocbench/dj_workloads.tar.xz
- verify (commit id, checksum) remote sources
diff --git a/src/allocator.py b/src/allocator.py
index 0e92c2a..0ffa56e 100644
--- a/src/allocator.py
+++ b/src/allocator.py
@@ -107,8 +107,6 @@ class AllocatorSources:
print_status("Patching", self.name, "...")
for patch in patches:
- print(self.patchdir)
- print(patch)
with open(patch.format(patchdir=self.patchdir), "rb") as patch_file:
proc = subprocess.run("patch -p1", shell=True, cwd=cwd,
stderr=subprocess.PIPE, stdout=stdout,