comparison mx/commands.py @ 5438:f46fee826f7f

Enable fastdebug server configuration in gate
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 23 May 2012 15:28:17 +0200
parents 0bd1ba69db2a
children 9f4783c0269e
comparison
equal deleted inserted replaced
5437:451327d8543b 5438:f46fee826f7f
821 821
822 for vmbuild in ['product', 'fastdebug']: 822 for vmbuild in ['product', 'fastdebug']:
823 _vmbuild = vmbuild 823 _vmbuild = vmbuild
824 for theVm in ['client', 'server']: 824 for theVm in ['client', 'server']:
825 _vm = theVm 825 _vm = theVm
826 # TODO: remove once regression in fastdebug-server has been fixed
827 if vmbuild == 'fastdebug' and theVm == 'server':
828 continue
829 826
830 t = Task('DaCapo_pmd:' + theVm + ':' + vmbuild) 827 t = Task('DaCapo_pmd:' + theVm + ':' + vmbuild)
831 dacapo(['pmd']) 828 dacapo(['pmd'])
832 tasks.append(t.stop()) 829 tasks.append(t.stop())
833 830