diff mx/commands.py @ 10965:050eba23554e

Add gate run with G1 and heap verification enabled
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Sun, 04 Aug 2013 02:36:40 +0200
parents eeb80dcd60d8
children e36f7e4af7bf
line wrap: on
line diff
--- 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')