comparison mx/mx_graal.py @ 20020:af1e4c16b00f

suppress menubar and dock when running ctw on Mac
author Doug Simon <doug.simon@oracle.com>
date Tue, 24 Mar 2015 12:01:58 +0100
parents 9a3c19db3015
children 4d119424b4ce
comparison
equal deleted inserted replaced
20019:fa9d90e73569 20020:af1e4c16b00f
1486 if vm_ == 'graal': 1486 if vm_ == 'graal':
1487 vmargs += ['-XX:+BootstrapGraal'] 1487 vmargs += ['-XX:+BootstrapGraal']
1488 vmargs += ['-G:CompileTheWorldClasspath=' + jar] 1488 vmargs += ['-G:CompileTheWorldClasspath=' + jar]
1489 else: 1489 else:
1490 vmargs += ['-Xbootclasspath/p:' + jar] 1490 vmargs += ['-Xbootclasspath/p:' + jar]
1491
1492 # suppress menubar and dock when running on Mac
1493 vmargs = ['-Djava.awt.headless=true'] + vmargs
1494
1491 vm(vmargs) 1495 vm(vmargs)
1492 1496
1493 def _basic_gate_body(args, tasks): 1497 def _basic_gate_body(args, tasks):
1494 # Build server-hosted-graal now so we can run the unit tests 1498 # Build server-hosted-graal now so we can run the unit tests
1495 with Task('BuildHotSpotGraalHosted: product', tasks) as t: 1499 with Task('BuildHotSpotGraalHosted: product', tasks) as t: