# HG changeset patch # User Christos Kotselidis # Date 1375576600 -7200 # Node ID 050eba23554e730749b27c4e73f2465c4508d51f # Parent 769ad79b8e0c53c2349c9638bf2a249629d087df Add gate run with G1 and heap verification enabled diff -r 769ad79b8e0c -r 050eba23554e mx/commands.py --- a/mx/commands.py Sat Aug 03 19:11:15 2013 +0200 +++ b/mx/commands.py Sun Aug 04 02:36:40 2013 +0200 @@ -954,6 +954,11 @@ t = Task('BootstrapWithGCVerification:product') vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version']) tasks.append(t.stop()) + + _vmbuild = 'product' + t = Task('BootstrapWithG1GCVerification:product') + vm(['-XX:+UnlockDiagnosticVMOptions', '-XX:-UseSerialGC','-XX:+UseG1GC','-XX:+UseNewCode','-XX:+VerifyBeforeGC', '-XX:+VerifyAfterGC', '-version']) + tasks.append(t.stop()) _vmbuild = 'product' t = Task('BootstrapWithRegisterPressure:product')