regress revision 8811
113666Sandreas.sandberg@arm.com#! /usr/bin/env python 213666Sandreas.sandberg@arm.com# Copyright (c) 2005-2007 The Regents of The University of Michigan 313666Sandreas.sandberg@arm.com# All rights reserved. 413666Sandreas.sandberg@arm.com# 513666Sandreas.sandberg@arm.com# Redistribution and use in source and binary forms, with or without 613666Sandreas.sandberg@arm.com# modification, are permitted provided that the following conditions are 713666Sandreas.sandberg@arm.com# met: redistributions of source code must retain the above copyright 813666Sandreas.sandberg@arm.com# notice, this list of conditions and the following disclaimer; 913666Sandreas.sandberg@arm.com# redistributions in binary form must reproduce the above copyright 1013666Sandreas.sandberg@arm.com# notice, this list of conditions and the following disclaimer in the 1113666Sandreas.sandberg@arm.com# documentation and/or other materials provided with the distribution; 1213666Sandreas.sandberg@arm.com# neither the name of the copyright holders nor the names of its 1313666Sandreas.sandberg@arm.com# contributors may be used to endorse or promote products derived from 1413666Sandreas.sandberg@arm.com# this software without specific prior written permission. 1513666Sandreas.sandberg@arm.com# 1613666Sandreas.sandberg@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1713666Sandreas.sandberg@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1813666Sandreas.sandberg@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 1913666Sandreas.sandberg@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2013666Sandreas.sandberg@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2113666Sandreas.sandberg@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2213666Sandreas.sandberg@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2313666Sandreas.sandberg@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2413666Sandreas.sandberg@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2513666Sandreas.sandberg@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2613666Sandreas.sandberg@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2713666Sandreas.sandberg@arm.com# 2813666Sandreas.sandberg@arm.com# Authors: Steve Reinhardt 2913666Sandreas.sandberg@arm.com 3013666Sandreas.sandberg@arm.comimport sys 3113666Sandreas.sandberg@arm.comimport os 3213666Sandreas.sandberg@arm.comimport optparse 3313666Sandreas.sandberg@arm.comimport datetime 3413666Sandreas.sandberg@arm.comfrom subprocess import call 3513666Sandreas.sandberg@arm.com 3613666Sandreas.sandberg@arm.comprogname = os.path.basename(sys.argv[0]) 3713666Sandreas.sandberg@arm.com 3813666Sandreas.sandberg@arm.comoptparser = optparse.OptionParser() 3913666Sandreas.sandberg@arm.comadd_option = optparser.add_option 4013666Sandreas.sandberg@arm.comadd_option('-v', '--verbose', action='store_true', default=False, 4113666Sandreas.sandberg@arm.com help='echo commands before executing') 42add_option('--builds', 43 default='ALPHA,ALPHA_MOESI_hammer,' \ 44 'ALPHA_MESI_CMP_directory,' \ 45 'ALPHA_MOESI_CMP_directory,' \ 46 'ALPHA_MOESI_CMP_token,' \ 47 'MIPS,' \ 48 'POWER,' \ 49 'SPARC,' \ 50 'X86,' \ 51 'ARM', 52 help="comma-separated build targets to test (default: '%default')") 53add_option('--modes', 54 default='se,fs', 55 help="comma-separated modes to test (default: '%default')") 56add_option('--test-variants', default='opt', 57 help="comma-separated build variants to test (default: '%default')"\ 58 ", set to '' for none") 59add_option('--compile-variants', default='debug,fast', 60 help="comma-separated build variants to compile only (not test) " \ 61 "(default: '%default'), set to '' for none", metavar='VARIANTS') 62add_option('--scons-opts', default='', metavar='OPTS', 63 help='scons options') 64add_option('-j', '--jobs', type='int', default=1, metavar='N', 65 help='number of parallel jobs to use (0 to use all cores)') 66add_option('-k', '--keep-going', action='store_true', 67 help='keep going after errors') 68add_option('--update-ref', action='store_true', 69 help='update reference outputs') 70add_option('-D', '--build-dir', default='', metavar='DIR', 71 help='build directory location') 72add_option('-n', "--no-exec", default=False, action='store_true', 73 help="don't actually invoke scons, just echo SCons command line") 74 75(options, tests) = optparser.parse_args() 76 77 78# split a comma-separated list, but return an empty list if given the 79# empty string 80def split_if_nonempty(s): 81 if not s: 82 return [] 83 return s.split(',') 84 85# split list options on ',' to get Python lists 86builds = split_if_nonempty(options.builds) 87modes = split_if_nonempty(options.modes) 88test_variants = split_if_nonempty(options.test_variants) 89compile_variants = split_if_nonempty(options.compile_variants) 90 91options.build_dir = os.path.join(options.build_dir, 'build') 92 93# Call os.system() and raise exception if return status is non-zero 94def system(cmd): 95 try: 96 retcode = call(cmd, shell=True) 97 if retcode < 0: 98 print >>sys.stderr, "Child was terminated by signal", -retcode 99 print >>sys.stderr, "When attemping to execute: %s" % cmd 100 sys.exit(1) 101 elif retcode > 0: 102 print >>sys.stderr, "Child returned", retcode 103 print >>sys.stderr, "When attemping to execute: %s" % cmd 104 sys.exit(1) 105 except OSError, e: 106 print >>sys.stderr, "Execution failed:", e 107 print >>sys.stderr, "When attemping to execute: %s" % cmd 108 sys.exit(1) 109 110targets = [] 111 112# start with compile-only targets, if any 113if compile_variants: 114 targets += ['%s/%s/m5.%s' % (options.build_dir, build, variant) 115 for variant in compile_variants 116 for build in builds] 117 118# By default run the 'quick' tests, all expands to quick and long 119if not tests: 120 tests = ['quick'] 121elif 'all' in tests: 122 tests = ['quick,long'] 123 124# set up test targets for scons, since we don't have any quick SPARC 125# full-system tests exclude it 126targets += ['%s/%s/tests/%s/%s/%s' % (options.build_dir, build, variant, test, 127 mode) 128 for build in builds 129 for variant in test_variants 130 for test in tests 131 for mode in modes 132 if not (build == 'SPARC' and test == 'quick' and mode == 'fs')] 133 134def cpu_count(): 135 if 'bsd' in sys.platform or sys.platform == 'darwin': 136 try: 137 return int(os.popen('sysctl -n hw.ncpu').read()) 138 except ValueError: 139 pass 140 else: 141 try: 142 return os.sysconf('SC_NPROCESSORS_ONLN') 143 except (ValueError, OSError, AttributeError): 144 pass 145 146 raise NotImplementedError('cannot determine number of cpus') 147 148scons_opts = options.scons_opts 149if options.jobs != 1: 150 if options.jobs == 0: 151 options.jobs = cpu_count() 152 scons_opts += ' -j %d' % options.jobs 153if options.keep_going: 154 scons_opts += ' -k' 155if options.update_ref: 156 scons_opts += ' --update-ref' 157 158cmd = 'scons --ignore-style %s %s' % (scons_opts, ' '.join(targets)) 159if options.no_exec: 160 print cmd 161else: 162 system(cmd) 163 sys.exit(0) 164