changeset 9168:50161aa21af2

deleted definition of TEST_IN_BUILD and GRAAL build variables as they are no longer used by the make files
author Doug Simon <doug.simon@oracle.com>
date Tue, 16 Apr 2013 22:46:02 +0200
parents e49300a46e88
children f0fc8329bf98
files mx/commands.py
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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)