comparison mx/mx_graal.py @ 14606:f50dece27798

fixed regression in gate command
author Doug Simon <doug.simon@oracle.com>
date Tue, 18 Mar 2014 23:50:46 +0100
parents 5953ac9e0d93
children af7b9b9a9a28
comparison
equal deleted inserted replaced
14605:5953ac9e0d93 14606:f50dece27798
1055 buildvms(['--vms', 'server-nograal', '--builds', 'optimized']) 1055 buildvms(['--vms', 'server-nograal', '--builds', 'optimized'])
1056 tasks.append(t.stop()) 1056 tasks.append(t.stop())
1057 1057
1058 for vmbuild in ['product', 'fastdebug']: 1058 for vmbuild in ['product', 'fastdebug']:
1059 for theVm in ['client', 'server']: 1059 for theVm in ['client', 'server']:
1060 if not isVMSupported(vm): 1060 if not isVMSupported(theVm):
1061 mx.log('The' + vm + ' VM is not supported on this platform') 1061 mx.log('The' + theVm + ' VM is not supported on this platform')
1062 continue 1062 continue
1063 with VM(theVm, vmbuild): 1063 with VM(theVm, vmbuild):
1064 t = Task('DaCapo_pmd:' + theVm + ':' + vmbuild) 1064 t = Task('DaCapo_pmd:' + theVm + ':' + vmbuild)
1065 dacapo(['pmd']) 1065 dacapo(['pmd'])
1066 tasks.append(t.stop()) 1066 tasks.append(t.stop())