changeset 10527:2b95d5b1958b

change to GC verification during gate: run in product, add after-GC verification
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 25 Jun 2013 10:22:02 +0200
parents 815c675b07b0
children 5fb4a450b7a7 ce09ad599709
files mx/commands.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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'