comparison mx/mx_graal.py @ 19335:5414f848de51

Remove baseline tests from the gate.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 12 Feb 2015 22:03:20 +0100
parents 8cd798884d60
children 9f037830060a
comparison
equal deleted inserted replaced
19334:0e4449e992c6 19335:5414f848de51
1487 1487
1488 # Run unit tests on server-hosted-graal 1488 # Run unit tests on server-hosted-graal
1489 with VM('server', 'product'): 1489 with VM('server', 'product'):
1490 with Task('UnitTests:hosted-product', tasks): 1490 with Task('UnitTests:hosted-product', tasks):
1491 unittest(['--enable-timing', '--verbose', '--fail-fast']) 1491 unittest(['--enable-timing', '--verbose', '--fail-fast'])
1492
1493 # Run baseline unit tests on server-hosted-graal
1494 with VM('server', 'product'):
1495 with Task('UnitTests-BaselineCompiler:hosted-product', tasks):
1496 unittest(['--enable-timing', '--verbose', '--whitelist', 'test/whitelist_baseline.txt', '-G:+UseBaselineCompiler'])
1497 1492
1498 # Build the other VM flavors 1493 # Build the other VM flavors
1499 with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks): 1494 with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks):
1500 buildvms(['--vms', 'graal,server', '--builds', 'fastdebug,product']) 1495 buildvms(['--vms', 'graal,server', '--builds', 'fastdebug,product'])
1501 1496