# HG changeset patch # User Doug Simon # Date 1366145162 -7200 # Node ID 50161aa21af2d1f551e5eef9e59a92b390e27609 # Parent e49300a46e88928b2e9df0a553b9eb43c6bd07e5 deleted definition of TEST_IN_BUILD and GRAAL build variables as they are no longer used by the make files diff -r e49300a46e88 -r 50161aa21af2 mx/commands.py --- a/mx/commands.py Tue Apr 16 22:37:30 2013 +0200 +++ b/mx/commands.py Tue Apr 16 22:46:02 2013 +0200 @@ -530,7 +530,6 @@ 'HOTSPOT_BUILD_JOBS' : 'Number of CPUs used by make (default: ' + str(multiprocessing.cpu_count()) + ')', 'INSTALL' : 'Install the built VM into the JDK? (default: y)', 'ZIP_DEBUGINFO_FILES' : 'Install zipped debug symbols file? (default: 0)', - 'TEST_IN_BUILD' : 'Run the Queens test as part of build (default: false)' } mx.log('HotSpot build variables that can be set by the -D option to "mx build":') @@ -665,7 +664,6 @@ env.setdefault('ALT_OUTPUTDIR', join(_graal_home, 'build-nograal', mx.get_os())) else: env['INCLUDE_GRAAL'] = 'true' - env['GRAAL'] = join(_graal_home, 'graal') # needed for TEST_IN_BUILD env.setdefault('INSTALL', 'y') if mx.get_os() == 'solaris' : # If using sparcWorks, setup flags to avoid make complaining about CC version @@ -682,9 +680,6 @@ # This removes the need to unzip the *.diz files before debugging in gdb env.setdefault('ZIP_DEBUGINFO_FILES', '0') - # We don't need to run the Queens test (i.e. test_gamma) - env.setdefault('TEST_IN_BUILD', 'false') - # Clear these 2 variables as having them set can cause very confusing build problems env.pop('LD_LIBRARY_PATH', None) env.pop('CLASSPATH', None)