# HG changeset patch # User Doug Simon # Date 1355345750 -3600 # Node ID c356cab093bccdf5982c32c70949e307872a1b94 # Parent 5d0bb7d5278388804e51a125ca73e29897b692ce added execution of the Graal API unittest with non-GraalVM HotSpot builds to the gate diff -r 5d0bb7d52783 -r c356cab093bc mx/commands.py --- a/mx/commands.py Wed Dec 12 21:36:40 2012 +0100 +++ b/mx/commands.py Wed Dec 12 21:55:50 2012 +0100 @@ -844,6 +844,10 @@ dacapo(['pmd']) tasks.append(t.stop()) + t = Task('UnitTests:' + theVm + ':' + vmbuild) + unittest(['@-XX:CompileCommand=exclude,*::run*', 'graal.api']) + tasks.append(t.stop()) + except KeyboardInterrupt: total.abort(1)