changeset 4324:b0aa4a52b89c

Added support for project specs in classpath.
author Doug Simon <doug.simon@oracle.com>
date Thu, 26 Jan 2012 10:54:23 +0100
parents df5547057954
children 0d122ed933b6 d13bfce7b3dd b2ba03fc66a2
files mx/commands.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx/commands.py	Wed Jan 25 14:34:53 2012 -0800
+++ b/mx/commands.py	Thu Jan 26 10:54:23 2012 +0100
@@ -369,6 +369,7 @@
     """run the GraalVM"""
 
     build = vmbuild if vmbuild is not None else _vmbuild if _vmSourcesAvailable else 'product'
+    mx.expand_project_in_args(args)  
     if mx.java().debug:
         args = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000'] + args
     exe = join(_jdk(build), 'bin', mx.exe_suffix('java'))
@@ -508,7 +509,7 @@
     total.stop()
 
 def bench(args):
-    """run benchmarks and parse their ouput for results
+    """run benchmarks and parse their output for results
 
     Results are JSON formated : {group : {benchmark : score}}."""
     resultFile = None