# HG changeset patch # User Lukas Stadler # Date 1371989527 -7200 # Node ID 195eb23d9909cc774f7945ee0e9abe9a8e8d19d9 # Parent edf612527d74ac6f8bd377b3e3e28b24b4e61592 add memory verification to the gate diff -r edf612527d74 -r 195eb23d9909 mx/commands.py --- a/mx/commands.py Sun Jun 23 14:11:40 2013 +0200 +++ b/mx/commands.py Sun Jun 23 14:12:07 2013 +0200 @@ -937,6 +937,11 @@ vm(['-esa', '-version']) tasks.append(t.stop()) + _vmbuild = 'fastdebug' + t = Task('BootstrapWithGCVerification:fastdebug') + vm(['-XX:+VerifyBeforeGC', '-version']) + tasks.append(t.stop()) + _vmbuild = 'product' t = Task('BootstrapWithRegisterPressure:product') vm(['-G:RegisterPressure=rbx,r11,r10,r14,xmm3,xmm11,xmm14', '-esa', '-version'])