SConscript revision 2932:eba74420a01c
112837Sgabeblack@google.com# -*- mode:python -*-
212837Sgabeblack@google.com
312837Sgabeblack@google.com# Copyright (c) 2004-2006 The Regents of The University of Michigan
412837Sgabeblack@google.com# All rights reserved.
512837Sgabeblack@google.com#
612837Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without
712837Sgabeblack@google.com# modification, are permitted provided that the following conditions are
812837Sgabeblack@google.com# met: redistributions of source code must retain the above copyright
912837Sgabeblack@google.com# notice, this list of conditions and the following disclaimer;
1012837Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright
1112837Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the
1212837Sgabeblack@google.com# documentation and/or other materials provided with the distribution;
1312837Sgabeblack@google.com# neither the name of the copyright holders nor the names of its
1412837Sgabeblack@google.com# contributors may be used to endorse or promote products derived from
1512837Sgabeblack@google.com# this software without specific prior written permission.
1612837Sgabeblack@google.com#
1712837Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1812837Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1912837Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2012837Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2112837Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2212837Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2312837Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2412837Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2512837Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2612837Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2712837Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2812837Sgabeblack@google.com#
2912837Sgabeblack@google.com# Authors: Steve Reinhardt
3012837Sgabeblack@google.com#          Kevin Lim
3112837Sgabeblack@google.com
3212837Sgabeblack@google.comimport os
3312837Sgabeblack@google.comimport sys
3412837Sgabeblack@google.comimport glob
3512837Sgabeblack@google.comfrom SCons.Script.SConscript import SConsEnvironment
3612837Sgabeblack@google.com
3712837Sgabeblack@google.comImport('env')
3812837Sgabeblack@google.com
3912837Sgabeblack@google.comenv['DIFFOUT'] = File('diff-out')
4012837Sgabeblack@google.com
4112837Sgabeblack@google.com# Dict that accumulates lists of tests by category (quick, medium, long)
4212837Sgabeblack@google.comenv.Tests = {}
4312837Sgabeblack@google.com
4412837Sgabeblack@google.comdef contents(node):
45    return file(str(node)).read()
46
47def check_test(target, source, env):
48    """Check output from running test.
49
50    Targets are as follows:
51    target[0] : outdiff
52    target[1] : statsdiff
53    target[2] : status
54
55    """
56    # make sure target files are all gone
57    for t in target:
58        if os.path.exists(t.abspath):
59            Execute(Delete(t.abspath))
60    # Run diff on output & ref directories to find differences.
61    # Exclude m5stats.txt since we will use diff-out on that.
62    Execute(env.subst('diff -ubr ${SOURCES[0].dir} ${SOURCES[1].dir} ' +
63                      '-I "^command line:" ' +		# for stdout file
64                      '-I "^M5 compiled on" ' +		# for stderr file
65                      '-I "^M5 simulation started" ' +	# for stderr file
66                      '-I "^Simulation complete at" ' +	# for stderr file
67                      '-I "^Listening for" ' +		# for stderr file
68                      '--exclude=m5stats.txt --exclude=SCCS ' +
69                      '--exclude=${TARGETS[0].file} ' +
70                      '> ${TARGETS[0]}', target=target, source=source), None)
71    print "===== Output differences ====="
72    print contents(target[0])
73    # Run diff-out on m5stats.txt file
74    status = Execute(env.subst('$DIFFOUT $SOURCES > ${TARGETS[1]}',
75                               target=target, source=source),
76                     strfunction=None)
77    print "===== Statistics differences ====="
78    print contents(target[1])
79    # Generate status file contents based on exit status of diff-out
80    if status == 0:
81        status_str = "passed."
82    else:
83        status_str = "FAILED!"
84    f = file(str(target[2]), 'w')
85    print >>f, env.subst('${TARGETS[2].dir}', target=target, source=source), \
86          status_str
87    f.close()
88    # done
89    return 0
90
91def check_test_string(target, source, env):
92    return env.subst("Comparing outputs in ${TARGETS[0].dir}.",
93                     target=target, source=source)
94
95testAction = env.Action(check_test, check_test_string)
96
97def print_test(target, source, env):
98    print '***** ' + contents(source[0])
99    return 0
100
101printAction = env.Action(print_test, strfunction = None)
102
103def update_test(target, source, env):
104    """Update reference test outputs.
105
106    Target is phony.  First two sources are the ref & new m5stats.txt
107    files, respectively.  We actually copy everything in the
108    respective directories except the status & diff output files.
109
110    """
111    dest_dir = str(source[0].get_dir())
112    src_dir = str(source[1].get_dir())
113    dest_files = os.listdir(dest_dir)
114    src_files = os.listdir(src_dir)
115    # Exclude status & diff outputs
116    for f in ('outdiff', 'statsdiff', 'status'):
117        if f in src_files:
118            src_files.remove(f)
119    for f in src_files:
120        if f in dest_files:
121            print "  Replacing file", f
122            dest_files.remove(f)
123        else:
124            print "  Creating new file", f
125        copyAction = Copy(os.path.join(dest_dir, f), os.path.join(src_dir, f))
126        copyAction.strfunction = None
127        Execute(copyAction)
128    # warn about any files in dest not overwritten (other than SCCS dir)
129    if 'SCCS' in dest_files:
130        dest_files.remove('SCCS')
131    if dest_files:
132        print "Warning: file(s) in", dest_dir, "not updated:",
133        print ', '.join(dest_files)
134    return 0
135
136def update_test_string(target, source, env):
137    return env.subst("Updating ${SOURCES[0].dir} from ${SOURCES[1].dir}",
138                     target=target, source=source)
139
140updateAction = env.Action(update_test, update_test_string)
141
142def test_builder(env, category, cpu_list=[], os_list=[], refdir='ref',
143                 timeout=15):
144    """Define a test.
145
146    Args:
147    category -- string describing test category (e.g., 'quick')
148    cpu_list -- list of CPUs to runs this test on (blank means all compiled CPUs)
149    os_list -- list of OSs to run this test on
150    refdir -- subdirectory containing reference output (default 'ref')
151    timeout -- test timeout in minutes (only enforced on pool)
152
153    """
154
155    default_refdir = False
156    if refdir == 'ref':
157        default_refdir = True
158    if len(cpu_list) == 0:
159        cpu_list = env['CPU_MODELS']
160    if env['TEST_CPU_MODELS']:
161        temp_cpu_list = []
162        for i in env['TEST_CPU_MODELS']:
163            if i in cpu_list:
164                temp_cpu_list.append(i)
165        cpu_list = temp_cpu_list
166# Code commented out that shows the general structure if we want to test
167# different OS's as well.
168#    if len(os_list) == 0:
169#        for test_cpu in cpu_list:
170#            build_cpu_test(env, category, '', test_cpu, refdir, timeout)
171#    else:
172#        for test_os in os_list:
173#            for test_cpu in cpu_list:
174#                build_cpu_test(env, category, test_os, test_cpu, refdir,
175#                               timeout)
176    # Loop through CPU models and generate proper options, ref directories
177    for cpu in cpu_list:
178        test_os = ''
179        if cpu == "AtomicSimpleCPU":
180            cpu_option = ('','atomic/')
181        elif cpu == "TimingSimpleCPU":
182            cpu_option = ('--timing','timing/')
183        elif cpu == "O3CPU":
184            cpu_option = ('--detailed','detailed/')
185        else:
186            raise TypeError, "Unknown CPU model specified"
187
188        if default_refdir:
189            # Reference stats located in ref/arch/os/cpu or ref/arch/cpu
190            # if no OS specified
191            test_refdir = os.path.join(refdir, env['TARGET_ISA'])
192            if test_os != '':
193                test_refdir = os.path.join(test_refdir, test_os)
194            cpu_refdir = os.path.join(test_refdir, cpu_option[1])
195
196        ref_stats = os.path.join(cpu_refdir, 'm5stats.txt')
197
198        # base command for running test
199        base_cmd = '${SOURCES[0]} -d $TARGET.dir ${SOURCES[1]}'
200        base_cmd = base_cmd + ' ' + cpu_option[0]
201        # stdout and stderr files
202        cmd_stdout = '${TARGETS[0]}'
203        cmd_stderr = '${TARGETS[1]}'
204
205        stdout_string = cpu_option[1] + 'stdout'
206        stderr_string = cpu_option[1] + 'stderr'
207        m5stats_string = cpu_option[1] + 'm5stats.txt'
208        outdiff_string =  cpu_option[1] + 'outdiff'
209        statsdiff_string = cpu_option[1] + 'statsdiff'
210        status_string = cpu_option[1] + 'status'
211
212        # Prefix test run with batch job submission command if appropriate.
213        # Output redirection is also different for batch runs.
214        # Batch command also supports timeout arg (in seconds, not minutes).
215        if env['BATCH']:
216            cmd = [env['BATCH_CMD'], '-t', str(timeout * 60),
217                   '-o', cmd_stdout, '-e', cmd_stderr, base_cmd]
218        else:
219            cmd = [base_cmd, '>', cmd_stdout, '2>', cmd_stderr]
220            
221        env.Command([stdout_string, stderr_string, m5stats_string],
222                    [env.M5Binary, 'run.py'], ' '.join(cmd))
223
224        # order of targets is important... see check_test
225        env.Command([outdiff_string, statsdiff_string, status_string],
226                    [ref_stats, m5stats_string],
227                    testAction)
228
229        # phony target to echo status
230        if env['update_ref']:
231            p = env.Command(cpu_option[1] + '_update',
232                            [ref_stats, m5stats_string, status_string],
233                            updateAction)
234        else:
235            p = env.Command(cpu_option[1] + '_print', [status_string],
236                            printAction)
237        env.AlwaysBuild(p)
238
239        env.Tests.setdefault(category, [])
240        env.Tests[category] += p
241
242# Make test_builder a "wrapper" function.  See SCons wiki page at
243# http://www.scons.org/cgi-bin/wiki/WrapperFunctions.
244SConsEnvironment.Test = test_builder
245
246cwd = os.getcwd()
247os.chdir(str(Dir('.').srcdir))
248scripts = glob.glob('*/SConscript')
249os.chdir(cwd)
250
251for s in scripts:
252    SConscript(s, exports = 'env', duplicate = False)
253
254# Set up phony commands for various test categories
255allTests = []
256for (key, val) in env.Tests.iteritems():
257    env.Command(key, val, env.NoAction)
258    allTests += val
259
260# The 'all' target is redundant since just specifying the test
261# directory name (e.g., ALPHA_SE/test/opt) has the same effect.
262env.Command('all', allTests, env.NoAction)
263