# HG changeset patch # User Doug Simon # Date 1342781642 -7200 # Node ID 44eb34b54526d02b38c7b5a5a89160a725788f11 # Parent 1cb45c7dba5517a8113f70a9a06d9fa7f460497e removed the unreliable 'intro' command diff -r 1cb45c7dba55 -r 44eb34b54526 mx/commands.py --- a/mx/commands.py Thu Jul 19 14:54:33 2012 +0200 +++ b/mx/commands.py Fri Jul 20 12:54:02 2012 +0200 @@ -221,18 +221,6 @@ if len(failed) != 0: mx.abort('DaCapo failures: ' + str(failed)) -def intro(args): - """run a simple program and visualize its compilation in the Graal Visualizer""" - # Start the visualizer in a separate thread - t = Thread(target=gv, args=([[]])) - t.start() - - # Give visualizer time to start - mx.log('Waiting 5 seconds for visualizer to start') - time.sleep(5) - - vm(['-G:Dump=', '-G:MethodFilter=greet', '-Xcomp', '-XX:CompileOnly=HelloWorld::greet', '-cp', mx.classpath('com.oracle.graal.examples')] + args + ['examples.HelloWorld']) - def scaladacapo(args): """run one or all Scala DaCapo benchmarks @@ -991,7 +979,6 @@ 'hsdis': [hsdis, '[att]'], 'hcfdis': [hcfdis, ''], 'igv' : [igv, ''], - 'intro': [intro, ''], 'jdkhome': [jdkhome, ''], 'dacapo': [dacapo, '[[n] benchmark] [VM options|@DaCapo options]'], 'scaladacapo': [scaladacapo, '[[n] benchmark] [VM options|@Scala DaCapo options]'],