Skip to content

Commit

Permalink
[GR-39480] Native images are 'EE' if the Stage1 distribution includes…
Browse files Browse the repository at this point in the history
… SubstrateVM EE.

PullRequest: graal/12096
  • Loading branch information
ansalond committed Jun 28, 2022
2 parents 4ea0c0d + a779fe6 commit fc9ed2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/mx.vm/mx_vm_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,7 @@ def runAndReturnStdOut(self, benchmarks, bmSuiteArgs):
if isinstance(vm, mx_benchmark.GuestVm):
host_vm = vm.host_vm()
assert host_vm
name = 'graalvm-ee' if mx_sdk_vm_impl.has_component('svmee') else 'graalvm-ce'
name = 'graalvm-ee' if mx_sdk_vm_impl.has_component('svmee', stage1=True) else 'graalvm-ce'
dims = {
# the vm and host-vm fields are hardcoded to one of the accepted names of the field
"vm": name,
Expand Down

0 comments on commit fc9ed2a

Please sign in to comment.