changeset 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 769ad79b8e0c
children 19648527ec72
files mx/commands.py
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
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')