comparison mx/commands.py @ 6278:4f9574b2893e

removed dependence on private java.lang.String internals in HexCodeFile
author Doug Simon <doug.simon@oracle.com>
date Wed, 22 Aug 2012 11:20:04 +0200
parents 03c4c25ae726
children 633136426f26
comparison
equal deleted inserted replaced
6277:dddcdb7ae209 6278:4f9574b2893e
952 def hcfdis(args): 952 def hcfdis(args):
953 """disassembles HexCodeFiles embedded in text files 953 """disassembles HexCodeFiles embedded in text files
954 954
955 Run a tool over the input files to convert all embedded HexCodeFiles 955 Run a tool over the input files to convert all embedded HexCodeFiles
956 to a disassembled format.""" 956 to a disassembled format."""
957 path = join(_graal_home, 'lib', 'hcfdis.jar') 957 path = join(_graal_home, 'lib', 'hcfdis-1.jar')
958 if not exists(path): 958 if not exists(path):
959 mx.download(path, ['http://lafo.ssw.uni-linz.ac.at/hcfdis.jar']) 959 mx.download(path, ['http://lafo.ssw.uni-linz.ac.at/hcfdis-1.jar'])
960 mx.run_java(['-jar', path] + args) 960 mx.run_java(['-jar', path] + args)
961 961
962 def jacocoreport(args): 962 def jacocoreport(args):
963 """creates a JaCoCo coverage report 963 """creates a JaCoCo coverage report
964 964