@@ -183,9 +183,9 @@ def config_name(self):
183
183
#
184
184
# ----------------------------------------------------------------------------------------------------------------------
185
185
class PythonBenchmarkSuite (VmBenchmarkSuite , AveragingBenchmarkMixin ):
186
- def __init__ (self , name , bench_path , benchmarks , harness_path ):
186
+ def __init__ (self , name , bench_path , benchmarks ):
187
187
self ._name = name
188
- self ._harness_path = harness_path
188
+ self ._harness_path = HARNESS_PATH
189
189
self ._harness_path = join (_graalpython_suite .dir , self ._harness_path )
190
190
if not self ._harness_path :
191
191
mx .abort ("python harness path not specified!" )
@@ -294,7 +294,7 @@ def get_vm_registry(self):
294
294
@classmethod
295
295
def get_benchmark_suites (cls , benchmarks ):
296
296
assert isinstance (benchmarks , dict ), "benchmarks must be a dict: {suite: [path, benchmarks], ...}"
297
- return [cls (suite_name , suite_info [0 ], suite_info [1 ], HARNESS_PATH )
297
+ return [cls (suite_name , suite_info [0 ], suite_info [1 ])
298
298
for suite_name , suite_info in benchmarks .items ()]
299
299
300
300
0 commit comments