diff mx/commands.py @ 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 600cbdce9805
children d13bfce7b3dd
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