regress revision 11828:36b064696175
111818SChristian.Menard@tu-dresden.de#! /usr/bin/env python2
211818SChristian.Menard@tu-dresden.de# Copyright (c) 2005-2007 The Regents of The University of Michigan
311818SChristian.Menard@tu-dresden.de# All rights reserved.
411818SChristian.Menard@tu-dresden.de#
511818SChristian.Menard@tu-dresden.de# Redistribution and use in source and binary forms, with or without
611818SChristian.Menard@tu-dresden.de# modification, are permitted provided that the following conditions are
711818SChristian.Menard@tu-dresden.de# met: redistributions of source code must retain the above copyright
811818SChristian.Menard@tu-dresden.de# notice, this list of conditions and the following disclaimer;
911818SChristian.Menard@tu-dresden.de# redistributions in binary form must reproduce the above copyright
1011818SChristian.Menard@tu-dresden.de# notice, this list of conditions and the following disclaimer in the
1111818SChristian.Menard@tu-dresden.de# documentation and/or other materials provided with the distribution;
1211818SChristian.Menard@tu-dresden.de# neither the name of the copyright holders nor the names of its
1311818SChristian.Menard@tu-dresden.de# contributors may be used to endorse or promote products derived from
1411818SChristian.Menard@tu-dresden.de# this software without specific prior written permission.
1511818SChristian.Menard@tu-dresden.de#
1611818SChristian.Menard@tu-dresden.de# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1711818SChristian.Menard@tu-dresden.de# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1811818SChristian.Menard@tu-dresden.de# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1911818SChristian.Menard@tu-dresden.de# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2011818SChristian.Menard@tu-dresden.de# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2111818SChristian.Menard@tu-dresden.de# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2211818SChristian.Menard@tu-dresden.de# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2311818SChristian.Menard@tu-dresden.de# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2411818SChristian.Menard@tu-dresden.de# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2511818SChristian.Menard@tu-dresden.de# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2611818SChristian.Menard@tu-dresden.de# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2711818SChristian.Menard@tu-dresden.de#
2811818SChristian.Menard@tu-dresden.de# Authors: Steve Reinhardt
2911818SChristian.Menard@tu-dresden.de
3011818SChristian.Menard@tu-dresden.deimport sys
3111818SChristian.Menard@tu-dresden.deimport os
3211818SChristian.Menard@tu-dresden.deimport optparse
3311818SChristian.Menard@tu-dresden.deimport datetime
3411818SChristian.Menard@tu-dresden.defrom subprocess import call
3511818SChristian.Menard@tu-dresden.de
3611818SChristian.Menard@tu-dresden.deprogname = os.path.basename(sys.argv[0])
3711818SChristian.Menard@tu-dresden.de
3811818SChristian.Menard@tu-dresden.deoptparser = optparse.OptionParser()
3911818SChristian.Menard@tu-dresden.deadd_option = optparser.add_option
4011818SChristian.Menard@tu-dresden.deadd_option('-v', '--verbose', action='store_true', default=False,
4111818SChristian.Menard@tu-dresden.de           help='echo commands before executing')
4211818SChristian.Menard@tu-dresden.deadd_option('--builds',
4311818SChristian.Menard@tu-dresden.de           default='ALPHA,' \
4411818SChristian.Menard@tu-dresden.de           'MIPS,' \
4511818SChristian.Menard@tu-dresden.de           'NULL,' \
4611818SChristian.Menard@tu-dresden.de           'NULL_MOESI_hammer,' \
4711818SChristian.Menard@tu-dresden.de           'NULL_MESI_Two_Level,'  \
4811818SChristian.Menard@tu-dresden.de           'NULL_MOESI_CMP_directory,' \
4911821SChristian.Menard@tu-dresden.de           'NULL_MOESI_CMP_token,' \
5011821SChristian.Menard@tu-dresden.de           'POWER,' \
5111818SChristian.Menard@tu-dresden.de           'SPARC,' \
5211818SChristian.Menard@tu-dresden.de           'X86,X86_MESI_Two_Level,' \
5311822SChristian.Menard@tu-dresden.de           'ARM,' \
5411818SChristian.Menard@tu-dresden.de           'RISCV,' \
5511818SChristian.Menard@tu-dresden.de           'HSAIL_X86',
5611818SChristian.Menard@tu-dresden.de           help="comma-separated build targets to test (default: '%default')")
5711818SChristian.Menard@tu-dresden.deadd_option('--modes',
5811818SChristian.Menard@tu-dresden.de           default='se,fs',
5911821SChristian.Menard@tu-dresden.de           help="comma-separated modes to test (default: '%default')")
6011821SChristian.Menard@tu-dresden.deadd_option('--test-variants', default='opt',
6111821SChristian.Menard@tu-dresden.de           help="comma-separated build variants to test (default: '%default')"\
6211818SChristian.Menard@tu-dresden.de           ", set to '' for none")
6311818SChristian.Menard@tu-dresden.deadd_option('--compile-variants', default='debug,fast',
6411822SChristian.Menard@tu-dresden.de           help="comma-separated build variants to compile only (not test) " \
6511821SChristian.Menard@tu-dresden.de           "(default: '%default'), set to '' for none", metavar='VARIANTS')
6611821SChristian.Menard@tu-dresden.deadd_option('--scons-opts', default='', metavar='OPTS',
6711821SChristian.Menard@tu-dresden.de           help='scons options')
6811818SChristian.Menard@tu-dresden.deadd_option('-j', '--jobs', type='int', default=1, metavar='N',
6911821SChristian.Menard@tu-dresden.de           help='number of parallel jobs to use (0 to use all cores)')
7011818SChristian.Menard@tu-dresden.deadd_option('-k', '--keep-going', action='store_true',
7111822SChristian.Menard@tu-dresden.de           help='keep going after errors')
7211822SChristian.Menard@tu-dresden.deadd_option('--update-ref', action='store_true',
7311822SChristian.Menard@tu-dresden.de           help='update reference outputs')
7411822SChristian.Menard@tu-dresden.deadd_option('-D', '--build-dir', default='', metavar='DIR',
7511822SChristian.Menard@tu-dresden.de           help='build directory location')
7611818SChristian.Menard@tu-dresden.deadd_option('-n', "--no-exec", default=False, action='store_true',
7711822SChristian.Menard@tu-dresden.de           help="don't actually invoke scons, just echo SCons command line")
7811822SChristian.Menard@tu-dresden.de
7911818SChristian.Menard@tu-dresden.de(options, tests) = optparser.parse_args()
8011821SChristian.Menard@tu-dresden.de
8111821SChristian.Menard@tu-dresden.de
8211818SChristian.Menard@tu-dresden.de# split a comma-separated list, but return an empty list if given the
8311818SChristian.Menard@tu-dresden.de# empty string
8411818SChristian.Menard@tu-dresden.dedef split_if_nonempty(s):
8511818SChristian.Menard@tu-dresden.de    if not s:
8611818SChristian.Menard@tu-dresden.de        return []
8711818SChristian.Menard@tu-dresden.de    return s.split(',')
8811818SChristian.Menard@tu-dresden.de
8911818SChristian.Menard@tu-dresden.de# 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