comparison mx/commands.py @ 7548:a8b0476270cf

disabled running of Queens test (i.e., test_gamma) in normal HotSpot builds
author Doug Simon <doug.simon@oracle.com>
date Tue, 22 Jan 2013 10:17:38 +0100
parents 442668d41bc2
children a200d10867f1
comparison
equal deleted inserted replaced
7547:f7ca24d268c4 7548:a8b0476270cf
572 # pass them down in the command line. This one is an example of that. 572 # pass them down in the command line. This one is an example of that.
573 runCmd.append('STRIP_POLICY=no_strip') 573 runCmd.append('STRIP_POLICY=no_strip')
574 # This removes the need to unzip the *.diz files before debugging in gdb 574 # This removes the need to unzip the *.diz files before debugging in gdb
575 env.setdefault('ZIP_DEBUGINFO_FILES', '0') 575 env.setdefault('ZIP_DEBUGINFO_FILES', '0')
576 576
577 # We don't need to run the Queens test (i.e. test_gamma)
578 env.setdefault('TEST_IN_BUILD', 'false')
579
577 # Clear these 2 variables as having them set can cause very confusing build problems 580 # Clear these 2 variables as having them set can cause very confusing build problems
578 env.pop('LD_LIBRARY_PATH', None) 581 env.pop('LD_LIBRARY_PATH', None)
579 env.pop('CLASSPATH', None) 582 env.pop('CLASSPATH', None)
580 583
581 mx.run(runCmd, cwd=join(_graal_home, 'make'), err=filterXusage) 584 mx.run(runCmd, cwd=join(_graal_home, 'make'), err=filterXusage)