diff options
| -rw-r--r-- | allocbench/benchmarks/espresso.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/allocbench/benchmarks/espresso.py b/allocbench/benchmarks/espresso.py index 1367bb2..32efa8b 100644 --- a/allocbench/benchmarks/espresso.py +++ b/allocbench/benchmarks/espresso.py @@ -69,10 +69,11 @@ class BenchmarkEspresso(Benchmark): self.cmd = "espresso{binary_suffix} {file}" self.args = { - "file": [os.path.join(BENCHSRCDIR, name, "largest.espresso")] + "file": ["largest.espresso"] } self.requirements = ["espresso"] + self.run_dir = os.path.join(BENCHSRCDIR, name) super().__init__(name) def summary(self): |
