comparison mx/commands.py @ 6701:6d1870a7554a

remove debug printout.
author Laurent Daynes <Laurent.Daynes@oracle.com>
date Fri, 09 Nov 2012 16:28:38 +0100
parents 9611d0ccb4ec
children 602ee4d1db61
comparison
equal deleted inserted replaced
6691:9611d0ccb4ec 6701:6d1870a7554a
621 'destfile' : 'jacoco.exec' 621 'destfile' : 'jacoco.exec'
622 } 622 }
623 args = ['-javaagent:' + jacocoagent.get_path(True) + '=' + ','.join([k + '=' + v for k, v in agentOptions.items()])] + args 623 args = ['-javaagent:' + jacocoagent.get_path(True) + '=' + ','.join([k + '=' + v for k, v in agentOptions.items()])] + args
624 if '-d64' not in args: 624 if '-d64' not in args:
625 args = ['-d64'] + args 625 args = ['-d64'] + args
626 print ['args = '] + args
627 exe = join(jdk, 'bin', mx.exe_suffix('java')) 626 exe = join(jdk, 'bin', mx.exe_suffix('java'))
628 dbg = _native_dbg.split() if _native_dbg is not None else [] 627 dbg = _native_dbg.split() if _native_dbg is not None else []
629 return mx.run(dbg + [exe, '-' + vm] + args, nonZeroIsFatal=nonZeroIsFatal, out=out, err=err, cwd=cwd, timeout=timeout) 628 return mx.run(dbg + [exe, '-' + vm] + args, nonZeroIsFatal=nonZeroIsFatal, out=out, err=err, cwd=cwd, timeout=timeout)
630 629
631 def _find_classes_with_annotations(p, pkgRoot, annotations, includeInnerClasses=False): 630 def _find_classes_with_annotations(p, pkgRoot, annotations, includeInnerClasses=False):