# HG changeset patch # User Roland Schatz # Date 1437997224 -7200 # Node ID c9eefaa577f61ad1899def78cf3f9755ad96436a # Parent 856aeb17e892ba26acef7db2c63d81bef33e570f Remove bootstrap from jvmci gate. diff -r 856aeb17e892 -r c9eefaa577f6 mx.jvmci/mx_jvmci.py --- a/mx.jvmci/mx_jvmci.py Thu Jul 23 11:44:06 2015 +0200 +++ b/mx.jvmci/mx_jvmci.py Mon Jul 27 13:40:24 2015 +0200 @@ -1167,26 +1167,6 @@ with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks) as t: if t: buildvms(['--vms', 'jvmci,server', '--builds', 'fastdebug,product']) - with VM('jvmci', 'fastdebug'): - with Task('BootstrapWithSystemAssertions:fastdebug', tasks) as t: - if t: vm(['-esa', '-XX:-TieredCompilation', '-version']) - - with VM('jvmci', 'fastdebug'): - with Task('BootstrapWithSystemAssertionsNoCoop:fastdebug', tasks) as t: - if t: vm(['-esa', '-XX:-TieredCompilation', '-XX:-UseCompressedOops', '-version']) - - with VM('jvmci', 'product'): - with Task('BootstrapWithGCVerification:product', tasks) as t: - if t: - out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write - vm(['-XX:-TieredCompilation', '-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out) - - with VM('jvmci', 'product'): - with Task('BootstrapWithG1GCVerification:product', tasks) as t: - if t: - out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write - vm(['-XX:-TieredCompilation', '-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC', '-XX:+UseG1GC', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version'], out=out) - with Task('CleanAndBuildIdealGraphVisualizer', tasks, disableJacoco=True) as t: if t and platform.processor() != 'sparc': buildxml = mx._cygpathU2W(join(_suite.dir, 'src', 'share', 'tools', 'IdealGraphVisualizer', 'build.xml'))