diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-29 12:14:32 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-29 12:14:32 +0200 |
| commit | 4499b5380b97ac0d64e3ba8701f1b8638609b420 (patch) | |
| tree | e0e531c4b94f78ed29b1380d061a255be8f19244 /src/benchmarks/lld.py | |
| parent | af68be15d93ed6ff737bbd2d503e38911f240e9a (diff) | |
| download | allocbench-4499b5380b97ac0d64e3ba8701f1b8638609b420.tar.gz allocbench-4499b5380b97ac0d64e3ba8701f1b8638609b420.zip | |
require a name in Benchmark.__init__
Diffstat (limited to 'src/benchmarks/lld.py')
| -rw-r--r-- | src/benchmarks/lld.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/benchmarks/lld.py b/src/benchmarks/lld.py index d626214..c5c802b 100644 --- a/src/benchmarks/lld.py +++ b/src/benchmarks/lld.py @@ -34,7 +34,7 @@ class BenchmarkLld(Benchmark): """ def __init__(self): - self.name = "lld" + name = "lld" self.run_dir = "lld-speed-test/{test}" # TODO: don't hardcode ld.lld location @@ -45,7 +45,7 @@ class BenchmarkLld(Benchmark): "gold-fsds", "llvm-as", "mozilla"]} self.requirements = ["ld.lld"] - super().__init__() + super().__init__(name) def prepare(self): super().prepare() |
