comparison mx.jvmci/mx_jvmci.py @ 22331:c9eefaa577f6

Remove bootstrap from jvmci gate.
author Roland Schatz <roland.schatz@oracle.com>
date Mon, 27 Jul 2015 13:40:24 +0200
parents 856aeb17e892
children 4dfa1275ffa3
comparison
equal deleted inserted replaced
22330:856aeb17e892 22331:c9eefaa577f6
1165 1165
1166 # Build the other VM flavors 1166 # Build the other VM flavors
1167 with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks) as t: 1167 with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks) as t:
1168 if t: buildvms(['--vms', 'jvmci,server', '--builds', 'fastdebug,product']) 1168 if t: buildvms(['--vms', 'jvmci,server', '--builds', 'fastdebug,product'])
1169 1169
1170 with VM('jvmci', 'fastdebug'):
1171 with Task('BootstrapWithSystemAssertions:fastdebug', tasks) as t:
1172 if t: vm(['-esa', '-XX:-TieredCompilation', '-version'])
1173
1174 with VM('jvmci', 'fastdebug'):
1175 with Task('BootstrapWithSystemAssertionsNoCoop:fastdebug', tasks) as t:
1176 if t: vm(['-esa', '-XX:-TieredCompilation', '-XX:-UseCompressedOops', '-version'])
1177
1178 with VM('jvmci', 'product'):
1179 with Task('BootstrapWithGCVerification:product', tasks) as t:
1180 if t:
1181 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write
1182 vm(['-XX:-TieredCompilation', '-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out)
1183
1184 with VM('jvmci', 'product'):
1185 with Task('BootstrapWithG1GCVerification:product', tasks) as t:
1186 if t:
1187 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write
1188 vm(['-XX:-TieredCompilation', '-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC', '-XX:+UseG1GC', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out)
1189
1190 with Task('CleanAndBuildIdealGraphVisualizer', tasks, disableJacoco=True) as t: 1170 with Task('CleanAndBuildIdealGraphVisualizer', tasks, disableJacoco=True) as t:
1191 if t and platform.processor() != 'sparc': 1171 if t and platform.processor() != 'sparc':
1192 buildxml = mx._cygpathU2W(join(_suite.dir, 'src', 'share', 'tools', 'IdealGraphVisualizer', 'build.xml')) 1172 buildxml = mx._cygpathU2W(join(_suite.dir, 'src', 'share', 'tools', 'IdealGraphVisualizer', 'build.xml'))
1193 mx.run(['ant', '-f', buildxml, '-q', 'clean', 'build'], env=_igvBuildEnv()) 1173 mx.run(['ant', '-f', buildxml, '-q', 'clean', 'build'], env=_igvBuildEnv())
1194 1174