Skip to content

Commit 29db5d3

Browse files
committed
Filter out truffle enterprise jmh benchmarks from whitebox benchmark suite.
1 parent 0d67fb5 commit 29db5d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/mx.compiler/mx_graal_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ def whitebox_dependency(dist):
526526
def filter_distribution(self, dist):
527527
return super(JMHDistWhiteboxBenchmarkSuite, self).filter_distribution(dist) and \
528528
any(JMHDistWhiteboxBenchmarkSuite.whitebox_dependency(dist)) and \
529-
not any(dep.name.startswith('com.oracle.truffle.enterprise.dispatch.jmh') for dep in dist.deps)
529+
not any(dep.name.startswith('com.oracle.truffle.enterprise.jmh') for dep in dist.deps)
530530

531531

532532
def extraVmArgs(self):

0 commit comments

Comments
 (0)