Skip to content

Commit

Permalink
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions mx.jruby/mx_jruby.py
Original file line number Diff line number Diff line change
@@ -288,9 +288,16 @@ def runBenchmark(self, benchmark, bmSuiteArgs):
else:
sys.stderr.write(out.data)

# TODO CS 24-Jun-16, return an error point?
# TODO CS 24-Jun-16, how can we fail the wider suite?
return []
return [{
'benchmark': benchmark,
'metric.name': 'throughput',
'metric.value': 0,
'metric.unit': 'op/s',
'metric.better': 'higher',
'extra.metric.warmedup': 'true',
'extra.error': 'failed'
}]

classic_benchmarks = [
'binary-trees',
@@ -436,10 +443,6 @@ def benchmarks(self):
benchmarks.extend([benchmark_file + ':' + b.strip() for b in out.data.split('\n') if len(b.strip()) > 0])
else:
sys.stderr.write(out.data)

# TODO CS 24-Jun-16, return an error point?
# TODO CS 24-Jun-16, how can we fail the wider suite?
return []
return benchmarks

def time(self):

0 comments on commit 55392a6

Please sign in to comment.