regress revision 13540
18112Sgblack@eecs.umich.edu#! /usr/bin/env python2.7
28112Sgblack@eecs.umich.edu# Copyright (c) 2005-2007 The Regents of The University of Michigan
38112Sgblack@eecs.umich.edu# All rights reserved.
48112Sgblack@eecs.umich.edu#
58112Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
68112Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
78112Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
88112Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
98112Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
108112Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
118112Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
128112Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
138112Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
148112Sgblack@eecs.umich.edu# this software without specific prior written permission.
158112Sgblack@eecs.umich.edu#
168112Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
178112Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
188112Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
198112Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
208112Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
218112Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
228112Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
238112Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
248112Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
258112Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
268112Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
278112Sgblack@eecs.umich.edu#
288112Sgblack@eecs.umich.edu# Authors: Steve Reinhardt
298113Sgblack@eecs.umich.edu
308113Sgblack@eecs.umich.eduimport sys
318113Sgblack@eecs.umich.eduimport os
328113Sgblack@eecs.umich.eduimport optparse
338113Sgblack@eecs.umich.eduimport datetime
348113Sgblack@eecs.umich.edufrom subprocess import call
358113Sgblack@eecs.umich.edu
368113Sgblack@eecs.umich.eduprogname = os.path.basename(sys.argv[0])
378113Sgblack@eecs.umich.edu
388113Sgblack@eecs.umich.eduoptparser = optparse.OptionParser()
398113Sgblack@eecs.umich.eduadd_option = optparser.add_option
408113Sgblack@eecs.umich.eduadd_option('-v', '--verbose', action='store_true', default=False,
418113Sgblack@eecs.umich.edu           help='echo commands before executing')
428113Sgblack@eecs.umich.eduadd_option('--builds',
438113Sgblack@eecs.umich.edu           default='ALPHA,' \
448113Sgblack@eecs.umich.edu           'MIPS,' \
458113Sgblack@eecs.umich.edu           'NULL,' \
468113Sgblack@eecs.umich.edu           'NULL_MOESI_hammer,' \
478113Sgblack@eecs.umich.edu           'NULL_MESI_Two_Level,'  \
488113Sgblack@eecs.umich.edu           'NULL_MOESI_CMP_directory,' \
498113Sgblack@eecs.umich.edu           'NULL_MOESI_CMP_token,' \
508113Sgblack@eecs.umich.edu           'POWER,' \
518113Sgblack@eecs.umich.edu           'SPARC,' \
528113Sgblack@eecs.umich.edu           'X86,X86_MESI_Two_Level,' \
538113Sgblack@eecs.umich.edu           'ARM,' \
548113Sgblack@eecs.umich.edu           'RISCV,' \
558113Sgblack@eecs.umich.edu           'HSAIL_X86',
568113Sgblack@eecs.umich.edu           help="comma-separated build targets to test (default: '%default')")
578113Sgblack@eecs.umich.eduadd_option('--modes',
588113Sgblack@eecs.umich.edu           default='se,fs',
598113Sgblack@eecs.umich.edu           help="comma-separated modes to test (default: '%default')")
608113Sgblack@eecs.umich.eduadd_option('--test-variants', default='opt',
618113Sgblack@eecs.umich.edu           help="comma-separated build variants to test (default: '%default')"\
628113Sgblack@eecs.umich.edu           ", set to '' for none")
638113Sgblack@eecs.umich.eduadd_option('--compile-variants', default='debug,fast',
648113Sgblack@eecs.umich.edu           help="comma-separated build variants to compile only (not test) " \
658113Sgblack@eecs.umich.edu           "(default: '%default'), set to '' for none", metavar='VARIANTS')
668113Sgblack@eecs.umich.eduadd_option('--scons-opts', default='', metavar='OPTS',
678113Sgblack@eecs.umich.edu           help='scons options')
68add_option('-j', '--jobs', type='int', default=1, metavar='N',
69           help='number of parallel jobs to use (0 to use all cores)')
70add_option('-k', '--keep-going', action='store_true',
71           help='keep going after errors')
72add_option('--update-ref', action='store_true',
73           help='update reference outputs')
74add_option('-D', '--build-dir', default='', metavar='DIR',
75           help='build directory location')
76add_option('-n', "--no-exec", default=False, action='store_true',
77           help="don't actually invoke scons, just echo SCons command line")
78
79(options, tests) = optparser.parse_args()
80
81
82# split a comma-separated list, but return an empty list if given the
83# empty string
84def split_if_nonempty(s):
85    if not s:
86        return []
87    return s.split(',')
88
89# split list options on ',' to get Python lists
90builds = split_if_nonempty(options.builds)
91modes = split_if_nonempty(options.modes)
92test_variants = split_if_nonempty(options.test_variants)
93compile_variants = split_if_nonempty(options.compile_variants)
94
95options.build_dir = os.path.join(options.build_dir, 'build')
96
97# Call os.system() and raise exception if return status is non-zero
98def system(cmd):
99    try:
100        retcode = call(cmd, shell=True)
101        if retcode < 0:
102            print >>sys.stderr, "Child was terminated by signal", -retcode
103            print >>sys.stderr, "When attemping to execute: %s" % cmd
104            sys.exit(1)
105        elif retcode > 0:
106            print >>sys.stderr, "Child returned", retcode
107            print >>sys.stderr, "When attemping to execute: %s" % cmd
108            sys.exit(1)
109    except OSError, e:
110        print >>sys.stderr, "Execution failed:", e
111        print >>sys.stderr, "When attemping to execute: %s" % cmd
112        sys.exit(1)
113
114targets = []
115
116# start with compile-only targets, if any
117if compile_variants:
118    targets += ['%s/%s/gem5.%s' % (options.build_dir, build, variant)
119                for variant in compile_variants
120                for build in builds]
121
122# By default run the 'quick' tests, all expands to quick and long
123if not tests:
124    tests = ['quick']
125elif 'all' in tests:
126    tests = ['quick', 'long']
127
128# set up test targets for scons, since we don't have any quick SPARC
129# full-system tests exclude it
130targets += ['%s/%s/tests/%s/%s/%s' % (options.build_dir, build, variant, test,
131                                      mode)
132            for build in builds
133            for variant in test_variants
134            for test in tests
135            for mode in modes
136            if not (build == 'SPARC' and test == 'quick' and mode == 'fs')]
137
138def cpu_count():
139    if 'bsd' in sys.platform or sys.platform == 'darwin':
140        try:
141            return int(os.popen('sysctl -n hw.ncpu').read())
142        except ValueError:
143            pass
144    else:
145        try:
146            return os.sysconf('SC_NPROCESSORS_ONLN')
147        except (ValueError, OSError, AttributeError):
148            pass
149
150    raise NotImplementedError('cannot determine number of cpus')
151
152scons_opts = options.scons_opts
153if options.jobs != 1:
154    if options.jobs == 0:
155        options.jobs = cpu_count()
156    scons_opts += ' -j %d' % options.jobs
157if options.keep_going:
158    scons_opts += ' -k'
159if options.update_ref:
160    scons_opts += ' --update-ref'
161
162# We generally compile gem5.fast only to make sure it compiles OK;
163# it's not very useful to run as a regression test since assertions
164# are disabled.  Thus there's not much point spending time on
165# link-time optimization.
166scons_opts += ' --no-lto'
167
168cmd = 'scons --ignore-style %s %s' % (scons_opts, ' '.join(targets))
169if options.no_exec:
170    print cmd
171else:
172    system(cmd)
173    sys.exit(0)
174