# HG changeset patch # User Lukas Stadler # Date 1372148522 -7200 # Node ID 2b95d5b1958bda43078d31401e8e9dacddc9a45b # Parent 815c675b07b0d1c4cfbfa769780411047b1c5f0c change to GC verification during gate: run in product, add after-GC verification diff -r 815c675b07b0 -r 2b95d5b1958b mx/commands.py --- a/mx/commands.py Tue Jun 25 10:05:04 2013 +0200 +++ b/mx/commands.py Tue Jun 25 10:22:02 2013 +0200 @@ -937,9 +937,9 @@ vm(['-esa', '-version']) tasks.append(t.stop()) - _vmbuild = 'fastdebug' - t = Task('BootstrapWithGCVerification:fastdebug') - vm(['-XX:+VerifyBeforeGC', '-version']) + _vmbuild = 'product' + t = Task('BootstrapWithGCVerification:product') + vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version']) tasks.append(t.stop()) _vmbuild = 'product'