regress revision 11706
15612Sgblack@eecs.umich.edu#! /usr/bin/env python
25612Sgblack@eecs.umich.edu# Copyright (c) 2005-2007 The Regents of The University of Michigan
35612Sgblack@eecs.umich.edu# All rights reserved.
45612Sgblack@eecs.umich.edu#
55612Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
65612Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
75612Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
85612Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
95612Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
105612Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
115612Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
125612Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
135612Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
145612Sgblack@eecs.umich.edu# this software without specific prior written permission.
155612Sgblack@eecs.umich.edu#
165612Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
175612Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
185612Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
195612Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
205612Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
215612Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
225612Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
235612Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
245612Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
255612Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
265612Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
275612Sgblack@eecs.umich.edu#
285612Sgblack@eecs.umich.edu# Authors: Steve Reinhardt
295612Sgblack@eecs.umich.edu
305612Sgblack@eecs.umich.eduimport sys
315612Sgblack@eecs.umich.eduimport os
325612Sgblack@eecs.umich.eduimport optparse
335612Sgblack@eecs.umich.eduimport datetime
345612Sgblack@eecs.umich.edufrom subprocess import call
355612Sgblack@eecs.umich.edu
365612Sgblack@eecs.umich.eduprogname = os.path.basename(sys.argv[0])
375612Sgblack@eecs.umich.edu
385612Sgblack@eecs.umich.eduoptparser = optparse.OptionParser()
395612Sgblack@eecs.umich.eduadd_option = optparser.add_option
405612Sgblack@eecs.umich.eduadd_option('-v', '--verbose', action='store_true', default=False,
415612Sgblack@eecs.umich.edu           help='echo commands before executing')
425612Sgblack@eecs.umich.eduadd_option('--builds',
435612Sgblack@eecs.umich.edu           default='ALPHA,' \
445612Sgblack@eecs.umich.edu           'MIPS,' \
455612Sgblack@eecs.umich.edu           'NULL,' \
465612Sgblack@eecs.umich.edu           'NULL_MOESI_hammer,' \
475612Sgblack@eecs.umich.edu           'NULL_MESI_Two_Level,'  \
485612Sgblack@eecs.umich.edu           'NULL_MOESI_CMP_directory,' \
495612Sgblack@eecs.umich.edu           'NULL_MOESI_CMP_token,' \
505612Sgblack@eecs.umich.edu           'POWER,' \
515612Sgblack@eecs.umich.edu           'SPARC,' \
525612Sgblack@eecs.umich.edu           'X86,X86_MESI_Two_Level,' \
535612Sgblack@eecs.umich.edu           'ARM,' \
545612Sgblack@eecs.umich.edu           'HSAIL_X86',
555612Sgblack@eecs.umich.edu           help="comma-separated build targets to test (default: '%default')")
565612Sgblack@eecs.umich.eduadd_option('--modes',
575612Sgblack@eecs.umich.edu           default='se,fs',
585612Sgblack@eecs.umich.edu           help="comma-separated modes to test (default: '%default')")
595612Sgblack@eecs.umich.eduadd_option('--test-variants', default='opt',
605612Sgblack@eecs.umich.edu           help="comma-separated build variants to test (default: '%default')"\
615612Sgblack@eecs.umich.edu           ", set to '' for none")
625614Sgblack@eecs.umich.eduadd_option('--compile-variants', default='debug,fast',
635614Sgblack@eecs.umich.edu           help="comma-separated build variants to compile only (not test) " \
645612Sgblack@eecs.umich.edu           "(default: '%default'), set to '' for none", metavar='VARIANTS')
655612Sgblack@eecs.umich.eduadd_option('--scons-opts', default='', metavar='OPTS',
665612Sgblack@eecs.umich.edu           help='scons options')
675614Sgblack@eecs.umich.eduadd_option('-j', '--jobs', type='int', default=1, metavar='N',
685615Sgblack@eecs.umich.edu           help='number of parallel jobs to use (0 to use all cores)')
695612Sgblack@eecs.umich.eduadd_option('-k', '--keep-going', action='store_true',
70           help='keep going after errors')
71add_option('--update-ref', action='store_true',
72           help='update reference outputs')
73add_option('-D', '--build-dir', default='', metavar='DIR',
74           help='build directory location')
75add_option('-n', "--no-exec", default=False, action='store_true',
76           help="don't actually invoke scons, just echo SCons command line")
77
78(options, tests) = optparser.parse_args()
79
80
81# split a comma-separated list, but return an empty list if given the
82# empty string
83def split_if_nonempty(s):
84    if not s:
85        return []
86    return s.split(',')
87
88# split list options on ',' to get Python lists
89builds = split_if_nonempty(options.builds)
90modes = split_if_nonempty(options.modes)
91test_variants = split_if_nonempty(options.test_variants)
92compile_variants = split_if_nonempty(options.compile_variants)
93
94options.build_dir = os.path.join(options.build_dir, 'build')
95
96# Call os.system() and raise exception if return status is non-zero
97def system(cmd):
98    try:
99        retcode = call(cmd, shell=True)
100        if retcode < 0:
101            print >>sys.stderr, "Child was terminated by signal", -retcode
102            print >>sys.stderr, "When attemping to execute: %s" % cmd
103            sys.exit(1)
104        elif retcode > 0:
105            print >>sys.stderr, "Child returned", retcode
106            print >>sys.stderr, "When attemping to execute: %s" % cmd
107            sys.exit(1)
108    except OSError, e:
109        print >>sys.stderr, "Execution failed:", e
110        print >>sys.stderr, "When attemping to execute: %s" % cmd
111        sys.exit(1)
112
113targets = []
114
115# start with compile-only targets, if any
116if compile_variants:
117    targets += ['%s/%s/gem5.%s' % (options.build_dir, build, variant)
118                for variant in compile_variants
119                for build in builds]
120
121# By default run the 'quick' tests, all expands to quick and long
122if not tests:
123    tests = ['quick']
124elif 'all' in tests:
125    tests = ['quick', 'long']
126
127# set up test targets for scons, since we don't have any quick SPARC
128# full-system tests exclude it
129targets += ['%s/%s/tests/%s/%s/%s' % (options.build_dir, build, variant, test,
130                                      mode)
131            for build in builds
132            for variant in test_variants
133            for test in tests
134            for mode in modes
135            if not (build == 'SPARC' and test == 'quick' and mode == 'fs')]
136
137def cpu_count():
138    if 'bsd' in sys.platform or sys.platform == 'darwin':
139        try:
140            return int(os.popen('sysctl -n hw.ncpu').read())
141        except ValueError:
142            pass
143    else:
144        try:
145            return os.sysconf('SC_NPROCESSORS_ONLN')
146        except (ValueError, OSError, AttributeError):
147            pass
148
149    raise NotImplementedError('cannot determine number of cpus')
150
151scons_opts = options.scons_opts
152if options.jobs != 1:
153    if options.jobs == 0:
154        options.jobs = cpu_count()
155    scons_opts += ' -j %d' % options.jobs
156if options.keep_going:
157    scons_opts += ' -k'
158if options.update_ref:
159    scons_opts += ' --update-ref'
160
161# We generally compile gem5.fast only to make sure it compiles OK;
162# it's not very useful to run as a regression test since assertions
163# are disabled.  Thus there's not much point spending time on
164# link-time optimization.
165scons_opts += ' --no-lto'
166
167cmd = 'scons --ignore-style %s %s' % (scons_opts, ' '.join(targets))
168if options.no_exec:
169    print cmd
170else:
171    system(cmd)
172    sys.exit(0)
173