diff options
Diffstat (limited to 'src/benchmarks/realloc.py')
| -rw-r--r-- | src/benchmarks/realloc.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/benchmarks/realloc.py b/src/benchmarks/realloc.py index ad31818..05edba1 100644 --- a/src/benchmarks/realloc.py +++ b/src/benchmarks/realloc.py @@ -26,14 +26,12 @@ class BenchmarkRealloc(Benchmark): realloc a pointer 100 times """ def __init__(self): - self.name = "realloc" + name = "realloc" self.cmd = "realloc" - self.args = {"oneshot": [1]} - self.requirements = ["realloc"] - super().__init__() + super().__init__(name) def summary(self): self.barplot_single_arg("{task-clock}", |
