SConscript revision 8528
12968SN/A# -*- mode:python -*-
22968SN/A
32968SN/A# Copyright (c) 2004-2006 The Regents of The University of Michigan
42968SN/A# All rights reserved.
52968SN/A#
63176SN/A# Redistribution and use in source and binary forms, with or without
72968SN/A# modification, are permitted provided that the following conditions are
82968SN/A# met: redistributions of source code must retain the above copyright
92968SN/A# notice, this list of conditions and the following disclaimer;
102968SN/A# redistributions in binary form must reproduce the above copyright
112968SN/A# notice, this list of conditions and the following disclaimer in the
122968SN/A# documentation and/or other materials provided with the distribution;
132968SN/A# neither the name of the copyright holders nor the names of its
142968SN/A# contributors may be used to endorse or promote products derived from
152968SN/A# this software without specific prior written permission.
162968SN/A#
172968SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182968SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
193171SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
203171SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212968SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
223176SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232968SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242968SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252968SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262968SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272968SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
283171SN/A#
293171SN/A# Authors: Steve Reinhardt
302968SN/A#          Kevin Lim
312968SN/A
322968SN/Aimport os, signal
333171SN/Aimport sys, time
342968SN/Aimport glob
352968SN/Afrom SCons.Script.SConscript import SConsEnvironment
362968SN/A
372968SN/AImport('env')
383176SN/A
393171SN/Aenv['DIFFOUT'] = File('diff-out')
402968SN/A
414966SN/A# Dict that accumulates lists of tests by category (quick, medium, long)
422968SN/Aenv.Tests = {}
432968SN/A
442968SN/Adef contents(node):
452968SN/A    return file(str(node)).read()
462968SN/A
472968SN/A# functions to parse return value from scons Execute()... not the same
482968SN/A# as wait() etc., so python built-in os funcs don't work.
492968SN/Adef signaled(status):
502968SN/A    return (status & 0x80) != 0;
512968SN/A
522968SN/Adef signum(status):
532968SN/A    return (status & 0x7f);
543171SN/A
552968SN/A# List of signals that indicate that we should retry the test rather
563171SN/A# than consider it failed.
573171SN/Aretry_signals = (signal.SIGTERM, signal.SIGKILL, signal.SIGINT,
583171SN/A                 signal.SIGQUIT, signal.SIGHUP)
593171SN/A
602968SN/A# regular expressions of lines to ignore when diffing outputs
612968SN/Aoutput_ignore_regexes = (
622968SN/A    '^command line:',		# for stdout file
635778SN/A    '^M5 compiled ',		# for stderr file
642968SN/A    '^M5 started ',		# for stderr file
652968SN/A    '^M5 executing on ',	# for stderr file
663171SN/A    '^Simulation complete at',	# for stderr file
673171SN/A    '^Listening for',		# for stderr file
683171SN/A    'listening for remote gdb',	# for stderr file
693171SN/A    )
702968SN/A
712968SN/Aoutput_ignore_args = ' '.join(["-I '"+s+"'" for s in output_ignore_regexes])
722968SN/A
732968SN/Aoutput_ignore_args += ' --exclude=stats.txt --exclude=outdiff'
742968SN/A
755778SN/Adef run_test(target, source, env):
762968SN/A    """Check output from running test.
772968SN/A
782968SN/A    Targets are as follows:
792968SN/A    target[0] : status
802968SN/A
812968SN/A    Sources are:
824966SN/A    source[0] : M5 binary
833171SN/A    source[1] : tests/run.py script
842968SN/A    source[2] : reference stats file
852968SN/A
862968SN/A    """
873171SN/A    # make sure target files are all gone
882968SN/A    for t in target:
892968SN/A        if os.path.exists(t.abspath):
902968SN/A            env.Execute(Delete(t.abspath))
913171SN/A
923171SN/A    tgt_dir = os.path.dirname(str(target[0]))
933171SN/A
943171SN/A    # Base command for running test.  We mess around with indirectly
953171SN/A    # referring to files via SOURCES and TARGETS so that scons can mess
963171SN/A    # with paths all it wants to and we still get the right files.
972968SN/A    cmd = '${SOURCES[0]} -d %s -re ${SOURCES[1]} %s' % (tgt_dir, tgt_dir)
982968SN/A
993171SN/A    # Prefix test run with batch job submission command if appropriate.
1002968SN/A    # Batch command also supports timeout arg (in seconds, not minutes).
1012968SN/A    timeout = 15 * 60 # used to be a param, probably should be again
1022968SN/A    if env['BATCH']:
1032968SN/A        cmd = '%s -t %d %s' % (env['BATCH_CMD'], timeout, cmd)
1042968SN/A
1052968SN/A    pre_exec_time = time.time()
1062968SN/A    status = env.Execute(env.subst(cmd, target=target, source=source))
1072968SN/A    if status == 0:
1083171SN/A        # M5 terminated normally.
1094966SN/A        # Run diff on output & ref directories to find differences.
1104966SN/A        # Exclude the stats file since we will use diff-out on that.
1114966SN/A
1124966SN/A        # NFS file systems can be annoying and not have updated yet
1138802Sgblack@eecs.umich.edu        # wait until we see the file modified
1148802Sgblack@eecs.umich.edu        statsdiff = os.path.join(tgt_dir, 'statsdiff')
1158802Sgblack@eecs.umich.edu        m_time = 0
1168802Sgblack@eecs.umich.edu        nap = 0
1178802Sgblack@eecs.umich.edu        while m_time < pre_exec_time and nap < 10:
1188802Sgblack@eecs.umich.edu            try:
1198802Sgblack@eecs.umich.edu                m_time = os.stat(statsdiff).st_mtime
1208802Sgblack@eecs.umich.edu            except OSError:
1218802Sgblack@eecs.umich.edu                pass
1228802Sgblack@eecs.umich.edu            time.sleep(1)
1238802Sgblack@eecs.umich.edu            nap += 1
1248802Sgblack@eecs.umich.edu
1258802Sgblack@eecs.umich.edu        outdiff = os.path.join(tgt_dir, 'outdiff')
1268802Sgblack@eecs.umich.edu        diffcmd = 'diff -ubrs %s ${SOURCES[2].dir} %s > %s' \
1278802Sgblack@eecs.umich.edu                  % (output_ignore_args, tgt_dir, outdiff)
1288802Sgblack@eecs.umich.edu        env.Execute(env.subst(diffcmd, target=target, source=source))
1298802Sgblack@eecs.umich.edu        print "===== Output differences ====="
1308802Sgblack@eecs.umich.edu        print contents(outdiff)
1318802Sgblack@eecs.umich.edu        # Run diff-out on stats.txt file
1328802Sgblack@eecs.umich.edu        diffcmd = '$DIFFOUT ${SOURCES[2]} %s > %s' \
1338802Sgblack@eecs.umich.edu                  % (os.path.join(tgt_dir, 'stats.txt'), statsdiff)
1348802Sgblack@eecs.umich.edu        diffcmd = env.subst(diffcmd, target=target, source=source)
1358802Sgblack@eecs.umich.edu        status = env.Execute(diffcmd, strfunction=None)
1368802Sgblack@eecs.umich.edu        print "===== Statistics differences ====="
1378802Sgblack@eecs.umich.edu        print contents(statsdiff)
1388802Sgblack@eecs.umich.edu
1398802Sgblack@eecs.umich.edu    else: # m5 exit status != 0
1408802Sgblack@eecs.umich.edu        # M5 did not terminate properly, so no need to check the output
1418802Sgblack@eecs.umich.edu        if signaled(status):
1428802Sgblack@eecs.umich.edu            print 'M5 terminated with signal', signum(status)
1438802Sgblack@eecs.umich.edu            if signum(status) in retry_signals:
1448802Sgblack@eecs.umich.edu                # Consider the test incomplete; don't create a 'status' output.
1458802Sgblack@eecs.umich.edu                # Hand the return status to scons and let scons decide what
1468802Sgblack@eecs.umich.edu                # to do about it (typically terminate unless run with -k).
1478802Sgblack@eecs.umich.edu                return status
1488802Sgblack@eecs.umich.edu        else:
1498802Sgblack@eecs.umich.edu            print 'M5 exited with non-zero status', status
1508802Sgblack@eecs.umich.edu        # complete but failed execution (call to exit() with non-zero
1518802Sgblack@eecs.umich.edu        # status, SIGABORT due to assertion failure, etc.)... fall through
1528802Sgblack@eecs.umich.edu        # and generate FAILED status as if output comparison had failed
1538802Sgblack@eecs.umich.edu
1548802Sgblack@eecs.umich.edu    # Generate status file contents based on exit status of m5 or diff-out
1558802Sgblack@eecs.umich.edu    if status == 0:
1568802Sgblack@eecs.umich.edu        status_str = "passed."
1578802Sgblack@eecs.umich.edu    else:
1588802Sgblack@eecs.umich.edu        status_str = "FAILED!"
1598802Sgblack@eecs.umich.edu    f = file(str(target[0]), 'w')
1608802Sgblack@eecs.umich.edu    print >>f, tgt_dir, status_str
1618802Sgblack@eecs.umich.edu    f.close()
1628802Sgblack@eecs.umich.edu    # done
1638802Sgblack@eecs.umich.edu    return 0
1648802Sgblack@eecs.umich.edu
1658802Sgblack@eecs.umich.edudef run_test_string(target, source, env):
1668802Sgblack@eecs.umich.edu    return env.subst("Running test in ${TARGETS[0].dir}.",
1678802Sgblack@eecs.umich.edu                     target=target, source=source)
1688802Sgblack@eecs.umich.edu
1698802Sgblack@eecs.umich.edutestAction = env.Action(run_test, run_test_string)
1708802Sgblack@eecs.umich.edu
1718802Sgblack@eecs.umich.edudef print_test(target, source, env):
1728802Sgblack@eecs.umich.edu    print '***** ' + contents(source[0])
1738802Sgblack@eecs.umich.edu    return 0
1748802Sgblack@eecs.umich.edu
1758802Sgblack@eecs.umich.eduprintAction = env.Action(print_test, strfunction = None)
1768802Sgblack@eecs.umich.edu
1778802Sgblack@eecs.umich.edu# Static vars for update_test:
1788802Sgblack@eecs.umich.edu# - long-winded message about ignored sources
1798802Sgblack@eecs.umich.eduignore_msg = '''
1808802Sgblack@eecs.umich.eduNote: The following file(s) will not be copied.  New non-standard
1818802Sgblack@eecs.umich.edu      output files must be copied manually once before --update-ref will
1828802Sgblack@eecs.umich.edu      recognize them as outputs.  Otherwise they are assumed to be
1838802Sgblack@eecs.umich.edu      inputs and are ignored.
1848802Sgblack@eecs.umich.edu'''
1858802Sgblack@eecs.umich.edu# - reference files always needed
1868802Sgblack@eecs.umich.eduneeded_files = set(['simout', 'simerr', 'stats.txt', 'config.ini'])
1878802Sgblack@eecs.umich.edu# - source files we always want to ignore
1888802Sgblack@eecs.umich.eduknown_ignores = set(['status', 'outdiff', 'statsdiff'])
1898802Sgblack@eecs.umich.edu
1908802Sgblack@eecs.umich.edudef update_test(target, source, env):
1918802Sgblack@eecs.umich.edu    """Update reference test outputs.
1928802Sgblack@eecs.umich.edu
1938802Sgblack@eecs.umich.edu    Target is phony.  First two sources are the ref & new stats.txt file
1948802Sgblack@eecs.umich.edu    files, respectively.  We actually copy everything in the
1958802Sgblack@eecs.umich.edu    respective directories except the status & diff output files.
1968802Sgblack@eecs.umich.edu
1978802Sgblack@eecs.umich.edu    """
1988802Sgblack@eecs.umich.edu    dest_dir = str(source[0].get_dir())
1998802Sgblack@eecs.umich.edu    src_dir = str(source[1].get_dir())
2008802Sgblack@eecs.umich.edu    dest_files = set(os.listdir(dest_dir))
2018802Sgblack@eecs.umich.edu    src_files = set(os.listdir(src_dir))
2028802Sgblack@eecs.umich.edu    # Copy all of the required files plus any existing dest files.
2038802Sgblack@eecs.umich.edu    wanted_files = needed_files | dest_files
2048802Sgblack@eecs.umich.edu    missing_files = wanted_files - src_files
2058802Sgblack@eecs.umich.edu    if len(missing_files) > 0:
2068802Sgblack@eecs.umich.edu        print "  WARNING: the following file(s) are missing " \
2078802Sgblack@eecs.umich.edu              "and will not be updated:"
2088802Sgblack@eecs.umich.edu        print "    ", " ,".join(missing_files)
2098802Sgblack@eecs.umich.edu    copy_files = wanted_files - missing_files
2108802Sgblack@eecs.umich.edu    warn_ignored_files = (src_files - copy_files) - known_ignores
2118802Sgblack@eecs.umich.edu    if len(warn_ignored_files) > 0:
2128802Sgblack@eecs.umich.edu        print ignore_msg,
2138802Sgblack@eecs.umich.edu        print "       ", ", ".join(warn_ignored_files)
2148802Sgblack@eecs.umich.edu    for f in copy_files:
2158802Sgblack@eecs.umich.edu        if f in dest_files:
2168802Sgblack@eecs.umich.edu            print "  Replacing file", f
2178802Sgblack@eecs.umich.edu            dest_files.remove(f)
2188802Sgblack@eecs.umich.edu        else:
2198802Sgblack@eecs.umich.edu            print "  Creating new file", f
2208802Sgblack@eecs.umich.edu        copyAction = Copy(os.path.join(dest_dir, f), os.path.join(src_dir, f))
2218802Sgblack@eecs.umich.edu        copyAction.strfunction = None
222        env.Execute(copyAction)
223    return 0
224
225def update_test_string(target, source, env):
226    return env.subst("Updating ${SOURCES[0].dir} from ${SOURCES[1].dir}",
227                     target=target, source=source)
228
229updateAction = env.Action(update_test, update_test_string)
230
231def test_builder(env, ref_dir):
232    """Define a test."""
233
234    (category, name, _ref, isa, opsys, config) = ref_dir.split('/')
235    assert(_ref == 'ref')
236
237    # target path (where test output goes) is the same except without
238    # the 'ref' component
239    tgt_dir = os.path.join(category, name, isa, opsys, config)
240
241    # prepend file name with tgt_dir
242    def tgt(f):
243        return os.path.join(tgt_dir, f)
244
245    ref_stats = os.path.join(ref_dir, 'stats.txt')
246    new_stats = tgt('stats.txt')
247    status_file = tgt('status')
248
249    env.Command([status_file],
250                [env.M5Binary, 'run.py', ref_stats],
251                testAction)
252
253    # phony target to echo status
254    if GetOption('update_ref'):
255        p = env.Command(tgt('_update'),
256                        [ref_stats, new_stats, status_file],
257                        updateAction)
258    else:
259        p = env.Command(tgt('_print'), [status_file], printAction)
260
261    env.AlwaysBuild(p)
262
263
264# Figure out applicable configs based on build type
265configs = []
266if env['FULL_SYSTEM']:
267    if env['TARGET_ISA'] == 'alpha':
268        configs += ['tsunami-simple-atomic',
269                    'tsunami-simple-timing',
270                    'tsunami-simple-atomic-dual',
271                    'tsunami-simple-timing-dual',
272                    'twosys-tsunami-simple-atomic',
273                    'tsunami-o3', 'tsunami-o3-dual',
274                    'tsunami-inorder']
275    if env['TARGET_ISA'] == 'sparc':
276        configs += ['t1000-simple-atomic',
277                    't1000-simple-timing']
278    if env['TARGET_ISA'] == 'arm':
279        configs += ['realview-simple-atomic',
280                    'realview-simple-atomic-dual',
281                    'realview-simple-timing',
282                    'realview-simple-timing-dual',
283                    'realview-o3',
284                    'realview-o3-dual']
285    if env['TARGET_ISA'] == 'x86':
286        configs += ['pc-simple-atomic',
287                    'pc-simple-timing',
288                    'pc-o3-timing']
289
290else:
291    configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest',
292                'simple-atomic-mp', 'simple-timing-mp', 'o3-timing-mp',
293                'inorder-timing', 'rubytest']
294
295if env['PROTOCOL'] != 'None':
296    if env['PROTOCOL'] == 'MI_example':
297        configs += [c + "-ruby" for c in configs]
298    else:
299        configs = [c + "-ruby-" + env['PROTOCOL'] for c in configs]
300
301cwd = os.getcwd()
302os.chdir(str(Dir('.').srcdir))
303for config in configs:
304    dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config))
305    for d in dirs:
306        if not os.path.exists(os.path.join(d, 'skip')):
307            test_builder(env, d)
308os.chdir(cwd)
309