comparison mx/mx_graal.py @ 19044:c9ef5e8bda3a

Fix comment.
author Roland Schatz <roland.schatz@oracle.com>
date Wed, 28 Jan 2015 12:08:21 +0100
parents 43baadc1913a
children d4f80cf249d0
comparison
equal deleted inserted replaced
19043:d77073bffd10 19044:c9ef5e8bda3a
1358 1358
1359 # default to -f1 if not specified otherwise 1359 # default to -f1 if not specified otherwise
1360 if not containsF: 1360 if not containsF:
1361 jmhArgs += ['-f1'] 1361 jmhArgs += ['-f1']
1362 1362
1363 # find all projects with the JMH dependency 1363 # find all projects with a direct JMH dependency
1364 jmhProjects = [] 1364 jmhProjects = []
1365 for p in mx.projects(): 1365 for p in mx.projects():
1366 if 'JMH' in p.deps: 1366 if 'JMH' in p.deps:
1367 jmhProjects.append(p.name) 1367 jmhProjects.append(p.name)
1368 cp = mx.classpath(jmhProjects) 1368 cp = mx.classpath(jmhProjects)