SConscript revision 11542
16019Shines@cs.fsu.edu# -*- mode:python -*-
26019Shines@cs.fsu.edu#
310037SARM gem5 Developers# Copyright (c) 2016 ARM Limited
47100Sgblack@eecs.umich.edu# All rights reserved
57100Sgblack@eecs.umich.edu#
67100Sgblack@eecs.umich.edu# The license below extends only to copyright in the software and shall
77100Sgblack@eecs.umich.edu# not be construed as granting a license to any other intellectual
87100Sgblack@eecs.umich.edu# property including but not limited to intellectual property relating
97100Sgblack@eecs.umich.edu# to a hardware implementation of the functionality of the software
107100Sgblack@eecs.umich.edu# licensed hereunder.  You may use the software subject to the license
117100Sgblack@eecs.umich.edu# terms below provided that you ensure that this notice is replicated
127100Sgblack@eecs.umich.edu# unmodified and in its entirety in all distributions of the software,
137100Sgblack@eecs.umich.edu# modified or unmodified, in source code or in binary form.
147100Sgblack@eecs.umich.edu#
156019Shines@cs.fsu.edu# Copyright (c) 2004-2006 The Regents of The University of Michigan
166019Shines@cs.fsu.edu# All rights reserved.
176019Shines@cs.fsu.edu#
186019Shines@cs.fsu.edu# Redistribution and use in source and binary forms, with or without
196019Shines@cs.fsu.edu# modification, are permitted provided that the following conditions are
206019Shines@cs.fsu.edu# met: redistributions of source code must retain the above copyright
216019Shines@cs.fsu.edu# notice, this list of conditions and the following disclaimer;
226019Shines@cs.fsu.edu# redistributions in binary form must reproduce the above copyright
236019Shines@cs.fsu.edu# notice, this list of conditions and the following disclaimer in the
246019Shines@cs.fsu.edu# documentation and/or other materials provided with the distribution;
256019Shines@cs.fsu.edu# neither the name of the copyright holders nor the names of its
266019Shines@cs.fsu.edu# contributors may be used to endorse or promote products derived from
276019Shines@cs.fsu.edu# this software without specific prior written permission.
286019Shines@cs.fsu.edu#
296019Shines@cs.fsu.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
306019Shines@cs.fsu.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
316019Shines@cs.fsu.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
326019Shines@cs.fsu.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
336019Shines@cs.fsu.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
346019Shines@cs.fsu.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
356019Shines@cs.fsu.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
366019Shines@cs.fsu.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
376019Shines@cs.fsu.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
386019Shines@cs.fsu.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
396019Shines@cs.fsu.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
406019Shines@cs.fsu.edu#
416019Shines@cs.fsu.edu# Authors: Steve Reinhardt
426757SAli.Saidi@ARM.com#          Kevin Lim
436019Shines@cs.fsu.edu#          Andreas Sandberg
446019Shines@cs.fsu.edu
456019Shines@cs.fsu.edufrom SCons.Script.SConscript import SConsEnvironment
466019Shines@cs.fsu.eduimport os
476019Shines@cs.fsu.eduimport pickle
4811320Ssteve.reinhardt@amd.comimport sys
496019Shines@cs.fsu.edu
509022Sgblack@eecs.umich.edusys.path.insert(0, Dir(".").srcnode().abspath)
516019Shines@cs.fsu.eduimport testing.tests as tests
5210037SARM gem5 Developersimport testing.results as results
5310037SARM gem5 Developers
547170Sgblack@eecs.umich.eduImport('env')
556253Sgblack@eecs.umich.edu
5610037SARM gem5 Developers# get the termcap from the environment
577202Sgblack@eecs.umich.edutermcap = env['TERMCAP']
5810037SARM gem5 Developers
596253Sgblack@eecs.umich.edu# Dict that accumulates lists of tests by category (quick, medium, long)
6010611SAndreas.Sandberg@ARM.comenv.Tests = {}
616253Sgblack@eecs.umich.edugpu_isa = env['TARGET_GPU_ISA'] if env['BUILD_GPU'] else None
627396Sgblack@eecs.umich.edufor cat in tests.all_categories:
6310037SARM gem5 Developers    env.Tests[cat] = tuple(
648745Sgblack@eecs.umich.edu        tests.get_tests(env["TARGET_ISA"],
657405SAli.Saidi@ARM.com                        categories=(cat, ),
6610461SAndreas.Sandberg@ARM.com                        ruby_protocol=env["PROTOCOL"],
678782Sgblack@eecs.umich.edu                        gpu_isa=gpu_isa))
688782Sgblack@eecs.umich.edu
698782Sgblack@eecs.umich.edudef color_message(color, msg):
7010810Sbr@bsdpad.com    return color + msg + termcap.Normal
7110810Sbr@bsdpad.com
7210810Sbr@bsdpad.comdef run_test(target, source, env):
737259Sgblack@eecs.umich.edu    """Run a test and produce results as a pickle file.
748757Sgblack@eecs.umich.edu
7510461SAndreas.Sandberg@ARM.com    Targets are as follows:
768782Sgblack@eecs.umich.edu    target[0] : Pickle file
778757Sgblack@eecs.umich.edu
7812531Sandreas.sandberg@arm.com    Sources are:
798777Sgblack@eecs.umich.edu    source[0] : gem5 binary
808782Sgblack@eecs.umich.edu    source[1] : tests/run.py script
818756Sgblack@eecs.umich.edu    source[2:] : reference files
8210037SARM gem5 Developers
8310037SARM gem5 Developers    """
846019Shines@cs.fsu.edu    tgt_dir = os.path.dirname(str(target[0]))
8512605Sgiacomo.travaglini@arm.com    config = tests.ClassicConfig(*tgt_dir.split('/')[-6:])
866757SAli.Saidi@ARM.com    test = tests.ClassicTest(source[0].abspath, tgt_dir, config,
878757Sgblack@eecs.umich.edu                             timeout=5*60*60,
886019Shines@cs.fsu.edu                             skip_diff_out=True)
898745Sgblack@eecs.umich.edu
909384SAndreas.Sandberg@arm.com    for ref in test.ref_files():
916397Sgblack@eecs.umich.edu        out_file = os.path.join(tgt_dir, ref)
9212531Sandreas.sandberg@arm.com        if os.path.exists(out_file):
938782Sgblack@eecs.umich.edu            env.Execute(Delete(out_file))
946019Shines@cs.fsu.edu
9510461SAndreas.Sandberg@ARM.com    with open(target[0].abspath, "wb") as fout:
966397Sgblack@eecs.umich.edu        formatter = results.Pickle(fout=fout)
978335Snate@binkert.org        formatter.dump_suites([ test.run() ])
9812531Sandreas.sandberg@arm.com
999023Sgblack@eecs.umich.edu    return 0
1009023Sgblack@eecs.umich.edu
10110461SAndreas.Sandberg@ARM.comdef run_test_string(target, source, env):
1028335Snate@binkert.org    return env.subst("Running test in ${TARGETS[0].dir}.",
1036019Shines@cs.fsu.edu                     target=target, source=source)
10410196SCurtis.Dunham@arm.com
10512222Sgabeblack@google.comtestAction = env.Action(run_test, run_test_string)
106
107def print_test(target, source, env):
108    """Run a test and produce results as a pickle file.
109
110    Targets are as follows:
111    target[*] : Dummy targets
112
113    Sources are:
114    source[0] : Pickle file
115
116    """
117    with open(source[0].abspath, "rb") as fin:
118        result = pickle.load(fin)
119
120    assert len(result) == 1
121    result = result[0]
122
123    formatter = None
124    if result.skipped():
125        status = color_message(termcap.Cyan, "skipped.")
126    elif result.changed():
127        status = color_message(termcap.Yellow, "CHANGED!")
128        formatter = results.Text()
129    elif result:
130        status = color_message(termcap.Green, "passed.")
131    else:
132        status = color_message(termcap.Red, "FAILED!")
133        formatter = results.Text()
134
135    if formatter:
136        formatter.dump_suites([result])
137
138    print "***** %s: %s" % (source[0].dir, status)
139    return 0
140
141printAction = env.Action(print_test, strfunction=None)
142
143def update_test(target, source, env):
144    """Update test reference data
145
146    Targets are as follows:
147    target[0] : Dummy file
148
149    Sources are:
150    source[0] : Pickle file
151    """
152
153    src_dir = os.path.dirname(str(source[0]))
154    config = tests.ClassicConfig(*src_dir.split('/')[-6:])
155    test = tests.ClassicTest(source[0].abspath, src_dir, config)
156    ref_dir = test.ref_dir
157
158    with open(source[0].abspath, "rb") as fin:
159        result = pickle.load(fin)
160
161    assert len(result) == 1
162    result = result[0]
163
164    if result.skipped():
165        print "*** %s: %s: Test skipped, not updating." % (
166            source[0].dir, color_message(termcap.Yellow, "WARNING"), )
167        return 0
168    elif result:
169        print "*** %s: %s: Test successful, not updating." % (
170            source[0].dir, color_message(termcap.Green, "skipped"), )
171        return 0
172    elif result.failed_run():
173        print "*** %s: %s: Test failed, not updating." % (
174            source[0].dir, color_message(termcap.Red, "ERROR"), )
175        return 1
176
177    print "** Updating %s" % (test, )
178    test.update_ref()
179
180    return 0
181
182def update_test_string(target, source, env):
183    return env.subst("Updating ${SOURCES[0].dir}",
184                     target=target, source=source)
185
186updateAction = env.Action(update_test, update_test_string)
187
188def test_builder(test_tuple):
189    """Define a test."""
190
191    out_dir = "/".join(test_tuple)
192    binary = env.M5Binary.abspath
193    test = tests.ClassicTest(binary, out_dir, test_tuple)
194
195    def tgt(name):
196        return os.path.join(out_dir, name)
197
198    def ref(name):
199        return os.path.join(test.ref_dir, name)
200
201    pickle_file = tgt("status.pickle")
202    targets = [
203        pickle_file,
204    ]
205
206    sources = [
207        env.M5Binary,
208        "run.py",
209    ] + [ ref(f) for f in test.ref_files() ]
210
211    env.Command(targets, sources, testAction)
212
213    # phony target to echo status
214    if GetOption('update_ref'):
215        p = env.Command(tgt("_update"), [pickle_file], updateAction)
216    else:
217        p = env.Command(tgt("_print"), [pickle_file], printAction)
218
219    env.AlwaysBuild(p)
220
221def list_tests(target, source, env):
222    """Create a list of tests
223
224    Targets are as follows:
225    target[0] : List file (e.g., tests/opt/all.list,  tests/opt/quick.list)
226
227    Sources are: -
228
229    """
230
231    tgt_name = os.path.basename(str(target[0]))
232    base, ext = os.path.splitext(tgt_name)
233    categories = tests.all_categories if base == "all" else (base, )
234
235    with open(target[0].abspath, "w") as fout:
236        for cat in categories:
237            for test in env.Tests[cat]:
238                print >> fout,"/".join(test)
239
240    return 0
241
242testListAction = env.Action(list_tests, strfunction=None)
243
244env.Command("all.list", tuple(), testListAction)
245for cat, test_list in env.Tests.items():
246    env.Command("%s.list" % cat, tuple(), testListAction)
247    for test in test_list:
248        test_builder(test)
249