SConscript revision 10260
12929Sktlim@umich.edu# -*- mode:python -*- 22929Sktlim@umich.edu 32932Sktlim@umich.edu# Copyright (c) 2004-2006 The Regents of The University of Michigan 42929Sktlim@umich.edu# All rights reserved. 52929Sktlim@umich.edu# 62929Sktlim@umich.edu# Redistribution and use in source and binary forms, with or without 72929Sktlim@umich.edu# modification, are permitted provided that the following conditions are 82929Sktlim@umich.edu# met: redistributions of source code must retain the above copyright 92929Sktlim@umich.edu# notice, this list of conditions and the following disclaimer; 102929Sktlim@umich.edu# redistributions in binary form must reproduce the above copyright 112929Sktlim@umich.edu# notice, this list of conditions and the following disclaimer in the 122929Sktlim@umich.edu# documentation and/or other materials provided with the distribution; 132929Sktlim@umich.edu# neither the name of the copyright holders nor the names of its 142929Sktlim@umich.edu# contributors may be used to endorse or promote products derived from 152929Sktlim@umich.edu# this software without specific prior written permission. 162929Sktlim@umich.edu# 172929Sktlim@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182929Sktlim@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192929Sktlim@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202929Sktlim@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212929Sktlim@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222929Sktlim@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232929Sktlim@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242929Sktlim@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252929Sktlim@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262929Sktlim@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272929Sktlim@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282932Sktlim@umich.edu# 292932Sktlim@umich.edu# Authors: Steve Reinhardt 302932Sktlim@umich.edu# Kevin Lim 312929Sktlim@umich.edu 326007Ssteve.reinhardt@amd.comimport os, signal 337735SAli.Saidi@ARM.comimport sys, time 342929Sktlim@umich.eduimport glob 352929Sktlim@umich.edufrom SCons.Script.SConscript import SConsEnvironment 362929Sktlim@umich.edu 372929Sktlim@umich.eduImport('env') 382929Sktlim@umich.edu 392929Sktlim@umich.eduenv['DIFFOUT'] = File('diff-out') 402929Sktlim@umich.edu 418947Sandreas.hansson@arm.com# get the termcap from the environment 428947Sandreas.hansson@arm.comtermcap = env['TERMCAP'] 438947Sandreas.hansson@arm.com 442929Sktlim@umich.edu# Dict that accumulates lists of tests by category (quick, medium, long) 452929Sktlim@umich.eduenv.Tests = {} 462929Sktlim@umich.edu 472929Sktlim@umich.edudef contents(node): 482929Sktlim@umich.edu return file(str(node)).read() 492929Sktlim@umich.edu 506007Ssteve.reinhardt@amd.com# functions to parse return value from scons Execute()... not the same 516007Ssteve.reinhardt@amd.com# as wait() etc., so python built-in os funcs don't work. 526007Ssteve.reinhardt@amd.comdef signaled(status): 536007Ssteve.reinhardt@amd.com return (status & 0x80) != 0; 546007Ssteve.reinhardt@amd.com 556007Ssteve.reinhardt@amd.comdef signum(status): 566007Ssteve.reinhardt@amd.com return (status & 0x7f); 576007Ssteve.reinhardt@amd.com 586007Ssteve.reinhardt@amd.com# List of signals that indicate that we should retry the test rather 596007Ssteve.reinhardt@amd.com# than consider it failed. 606007Ssteve.reinhardt@amd.comretry_signals = (signal.SIGTERM, signal.SIGKILL, signal.SIGINT, 616007Ssteve.reinhardt@amd.com signal.SIGQUIT, signal.SIGHUP) 626007Ssteve.reinhardt@amd.com 636007Ssteve.reinhardt@amd.com# regular expressions of lines to ignore when diffing outputs 646007Ssteve.reinhardt@amd.comoutput_ignore_regexes = ( 656007Ssteve.reinhardt@amd.com '^command line:', # for stdout file 669435SAndreas.Sandberg@ARM.com '^gem5 compiled ', # for stderr file 679435SAndreas.Sandberg@ARM.com '^gem5 started ', # for stderr file 689435SAndreas.Sandberg@ARM.com '^gem5 executing on ', # for stderr file 696007Ssteve.reinhardt@amd.com '^Simulation complete at', # for stderr file 706007Ssteve.reinhardt@amd.com '^Listening for', # for stderr file 716007Ssteve.reinhardt@amd.com 'listening for remote gdb', # for stderr file 726007Ssteve.reinhardt@amd.com ) 736007Ssteve.reinhardt@amd.com 746007Ssteve.reinhardt@amd.comoutput_ignore_args = ' '.join(["-I '"+s+"'" for s in output_ignore_regexes]) 756007Ssteve.reinhardt@amd.com 766007Ssteve.reinhardt@amd.comoutput_ignore_args += ' --exclude=stats.txt --exclude=outdiff' 776007Ssteve.reinhardt@amd.com 786007Ssteve.reinhardt@amd.comdef run_test(target, source, env): 792929Sktlim@umich.edu """Check output from running test. 802929Sktlim@umich.edu 812929Sktlim@umich.edu Targets are as follows: 826007Ssteve.reinhardt@amd.com target[0] : status 836007Ssteve.reinhardt@amd.com 846007Ssteve.reinhardt@amd.com Sources are: 859781Sandreas.hansson@arm.com source[0] : gem5 binary 866007Ssteve.reinhardt@amd.com source[1] : tests/run.py script 876007Ssteve.reinhardt@amd.com source[2] : reference stats file 882929Sktlim@umich.edu 892929Sktlim@umich.edu """ 902929Sktlim@umich.edu # make sure target files are all gone 912929Sktlim@umich.edu for t in target: 922929Sktlim@umich.edu if os.path.exists(t.abspath): 936011Ssteve.reinhardt@amd.com env.Execute(Delete(t.abspath)) 946007Ssteve.reinhardt@amd.com 956007Ssteve.reinhardt@amd.com tgt_dir = os.path.dirname(str(target[0])) 966007Ssteve.reinhardt@amd.com 976007Ssteve.reinhardt@amd.com # Base command for running test. We mess around with indirectly 986007Ssteve.reinhardt@amd.com # referring to files via SOURCES and TARGETS so that scons can mess 996007Ssteve.reinhardt@amd.com # with paths all it wants to and we still get the right files. 1006007Ssteve.reinhardt@amd.com cmd = '${SOURCES[0]} -d %s -re ${SOURCES[1]} %s' % (tgt_dir, tgt_dir) 1016007Ssteve.reinhardt@amd.com 1026007Ssteve.reinhardt@amd.com # Prefix test run with batch job submission command if appropriate. 1036007Ssteve.reinhardt@amd.com # Batch command also supports timeout arg (in seconds, not minutes). 1046007Ssteve.reinhardt@amd.com timeout = 15 * 60 # used to be a param, probably should be again 1056007Ssteve.reinhardt@amd.com if env['BATCH']: 1066007Ssteve.reinhardt@amd.com cmd = '%s -t %d %s' % (env['BATCH_CMD'], timeout, cmd) 1076007Ssteve.reinhardt@amd.com 1089781Sandreas.hansson@arm.com # Create a default value for the status string, changed as needed 1099781Sandreas.hansson@arm.com # based on the status. 1109781Sandreas.hansson@arm.com status_str = "passed." 1119781Sandreas.hansson@arm.com 1127735SAli.Saidi@ARM.com pre_exec_time = time.time() 1136011Ssteve.reinhardt@amd.com status = env.Execute(env.subst(cmd, target=target, source=source)) 1146007Ssteve.reinhardt@amd.com if status == 0: 1159781Sandreas.hansson@arm.com # gem5 terminated normally. 1166007Ssteve.reinhardt@amd.com # Run diff on output & ref directories to find differences. 1176007Ssteve.reinhardt@amd.com # Exclude the stats file since we will use diff-out on that. 1187735SAli.Saidi@ARM.com 1197735SAli.Saidi@ARM.com # NFS file systems can be annoying and not have updated yet 1207735SAli.Saidi@ARM.com # wait until we see the file modified 1217735SAli.Saidi@ARM.com statsdiff = os.path.join(tgt_dir, 'statsdiff') 1227735SAli.Saidi@ARM.com m_time = 0 1237735SAli.Saidi@ARM.com nap = 0 1247735SAli.Saidi@ARM.com while m_time < pre_exec_time and nap < 10: 1257735SAli.Saidi@ARM.com try: 1267735SAli.Saidi@ARM.com m_time = os.stat(statsdiff).st_mtime 1277735SAli.Saidi@ARM.com except OSError: 1287735SAli.Saidi@ARM.com pass 1297735SAli.Saidi@ARM.com time.sleep(1) 1307735SAli.Saidi@ARM.com nap += 1 1317735SAli.Saidi@ARM.com 1326007Ssteve.reinhardt@amd.com outdiff = os.path.join(tgt_dir, 'outdiff') 1338599Ssteve.reinhardt@amd.com # tack 'true' on the end so scons doesn't report diff's 1348599Ssteve.reinhardt@amd.com # non-zero exit code as a build error 1358599Ssteve.reinhardt@amd.com diffcmd = 'diff -ubrs %s ${SOURCES[2].dir} %s > %s; true' \ 1366007Ssteve.reinhardt@amd.com % (output_ignore_args, tgt_dir, outdiff) 1376011Ssteve.reinhardt@amd.com env.Execute(env.subst(diffcmd, target=target, source=source)) 1386007Ssteve.reinhardt@amd.com print "===== Output differences =====" 1396007Ssteve.reinhardt@amd.com print contents(outdiff) 1406007Ssteve.reinhardt@amd.com # Run diff-out on stats.txt file 1416007Ssteve.reinhardt@amd.com diffcmd = '$DIFFOUT ${SOURCES[2]} %s > %s' \ 1426007Ssteve.reinhardt@amd.com % (os.path.join(tgt_dir, 'stats.txt'), statsdiff) 1436007Ssteve.reinhardt@amd.com diffcmd = env.subst(diffcmd, target=target, source=source) 1449781Sandreas.hansson@arm.com diff_status = env.Execute(diffcmd, strfunction=None) 1459781Sandreas.hansson@arm.com # If there is a difference, change the status string to say so 1469781Sandreas.hansson@arm.com if diff_status != 0: 1479781Sandreas.hansson@arm.com status_str = "CHANGED!" 1486007Ssteve.reinhardt@amd.com print "===== Statistics differences =====" 1496007Ssteve.reinhardt@amd.com print contents(statsdiff) 1506007Ssteve.reinhardt@amd.com 1519781Sandreas.hansson@arm.com else: # gem5 exit status != 0 1529781Sandreas.hansson@arm.com # Consider it a failed test unless the exit status is 2 1539781Sandreas.hansson@arm.com status_str = "FAILED!" 1549781Sandreas.hansson@arm.com # gem5 did not terminate properly, so no need to check the output 1556008Ssteve.reinhardt@amd.com if signaled(status): 1569781Sandreas.hansson@arm.com print 'gem5 terminated with signal', signum(status) 1576008Ssteve.reinhardt@amd.com if signum(status) in retry_signals: 1586008Ssteve.reinhardt@amd.com # Consider the test incomplete; don't create a 'status' output. 1596008Ssteve.reinhardt@amd.com # Hand the return status to scons and let scons decide what 1606008Ssteve.reinhardt@amd.com # to do about it (typically terminate unless run with -k). 1616008Ssteve.reinhardt@amd.com return status 1629401SAndreas.Sandberg@ARM.com elif status == 2: 1639781Sandreas.hansson@arm.com # The test was skipped, change the status string to say so 1649781Sandreas.hansson@arm.com status_str = "skipped." 1656008Ssteve.reinhardt@amd.com else: 1669781Sandreas.hansson@arm.com print 'gem5 exited with non-zero status', status 1676007Ssteve.reinhardt@amd.com # complete but failed execution (call to exit() with non-zero 1686007Ssteve.reinhardt@amd.com # status, SIGABORT due to assertion failure, etc.)... fall through 1696007Ssteve.reinhardt@amd.com # and generate FAILED status as if output comparison had failed 1706007Ssteve.reinhardt@amd.com 1719781Sandreas.hansson@arm.com # Generate status file contents based on exit status of gem5 and diff-out 1726007Ssteve.reinhardt@amd.com f = file(str(target[0]), 'w') 1736007Ssteve.reinhardt@amd.com print >>f, tgt_dir, status_str 1742929Sktlim@umich.edu f.close() 1752929Sktlim@umich.edu # done 1762929Sktlim@umich.edu return 0 1772929Sktlim@umich.edu 1786007Ssteve.reinhardt@amd.comdef run_test_string(target, source, env): 1796007Ssteve.reinhardt@amd.com return env.subst("Running test in ${TARGETS[0].dir}.", 1802929Sktlim@umich.edu target=target, source=source) 1812929Sktlim@umich.edu 1826007Ssteve.reinhardt@amd.comtestAction = env.Action(run_test, run_test_string) 1832929Sktlim@umich.edu 1842929Sktlim@umich.edudef print_test(target, source, env): 1858947Sandreas.hansson@arm.com # print the status with colours to make it easier to see what 1868947Sandreas.hansson@arm.com # passed and what failed 1878947Sandreas.hansson@arm.com line = contents(source[0]) 1888947Sandreas.hansson@arm.com 1898947Sandreas.hansson@arm.com # split the line to words and get the last one 1908947Sandreas.hansson@arm.com words = line.split() 1918947Sandreas.hansson@arm.com status = words[-1] 1928947Sandreas.hansson@arm.com 1938947Sandreas.hansson@arm.com # if the test failed make it red, if it passed make it green, and 1948947Sandreas.hansson@arm.com # skip the punctuation 1958947Sandreas.hansson@arm.com if status == "FAILED!": 1968947Sandreas.hansson@arm.com status = termcap.Red + status[:-1] + termcap.Normal + status[-1] 1979781Sandreas.hansson@arm.com elif status == "CHANGED!": 1989781Sandreas.hansson@arm.com status = termcap.Yellow + status[:-1] + termcap.Normal + status[-1] 1998947Sandreas.hansson@arm.com elif status == "passed.": 2008947Sandreas.hansson@arm.com status = termcap.Green + status[:-1] + termcap.Normal + status[-1] 2019401SAndreas.Sandberg@ARM.com elif status == "skipped.": 2029781Sandreas.hansson@arm.com status = termcap.Cyan + status[:-1] + termcap.Normal + status[-1] 2038947Sandreas.hansson@arm.com 2048947Sandreas.hansson@arm.com # put it back in the list and join with space 2058947Sandreas.hansson@arm.com words[-1] = status 2068947Sandreas.hansson@arm.com line = " ".join(words) 2078947Sandreas.hansson@arm.com 2088947Sandreas.hansson@arm.com print '***** ' + line 2092929Sktlim@umich.edu return 0 2102929Sktlim@umich.edu 2112929Sktlim@umich.eduprintAction = env.Action(print_test, strfunction = None) 2122929Sktlim@umich.edu 2134937Sstever@gmail.com# Static vars for update_test: 2144937Sstever@gmail.com# - long-winded message about ignored sources 2154937Sstever@gmail.comignore_msg = ''' 2164937Sstever@gmail.comNote: The following file(s) will not be copied. New non-standard 2178120Sgblack@eecs.umich.edu output files must be copied manually once before --update-ref will 2184937Sstever@gmail.com recognize them as outputs. Otherwise they are assumed to be 2194937Sstever@gmail.com inputs and are ignored. 2204937Sstever@gmail.com''' 2214937Sstever@gmail.com# - reference files always needed 2225773Snate@binkert.orgneeded_files = set(['simout', 'simerr', 'stats.txt', 'config.ini']) 2234937Sstever@gmail.com# - source files we always want to ignore 2244937Sstever@gmail.comknown_ignores = set(['status', 'outdiff', 'statsdiff']) 2254937Sstever@gmail.com 2262929Sktlim@umich.edudef update_test(target, source, env): 2272929Sktlim@umich.edu """Update reference test outputs. 2282929Sktlim@umich.edu 2295773Snate@binkert.org Target is phony. First two sources are the ref & new stats.txt file 2302929Sktlim@umich.edu files, respectively. We actually copy everything in the 2312929Sktlim@umich.edu respective directories except the status & diff output files. 2322929Sktlim@umich.edu 2332929Sktlim@umich.edu """ 2342929Sktlim@umich.edu dest_dir = str(source[0].get_dir()) 2352929Sktlim@umich.edu src_dir = str(source[1].get_dir()) 2364937Sstever@gmail.com dest_files = set(os.listdir(dest_dir)) 2374937Sstever@gmail.com src_files = set(os.listdir(src_dir)) 2384937Sstever@gmail.com # Copy all of the required files plus any existing dest files. 2394937Sstever@gmail.com wanted_files = needed_files | dest_files 2404937Sstever@gmail.com missing_files = wanted_files - src_files 2414937Sstever@gmail.com if len(missing_files) > 0: 2424937Sstever@gmail.com print " WARNING: the following file(s) are missing " \ 2434937Sstever@gmail.com "and will not be updated:" 2444937Sstever@gmail.com print " ", " ,".join(missing_files) 2454937Sstever@gmail.com copy_files = wanted_files - missing_files 2464937Sstever@gmail.com warn_ignored_files = (src_files - copy_files) - known_ignores 2474937Sstever@gmail.com if len(warn_ignored_files) > 0: 2484937Sstever@gmail.com print ignore_msg, 2494937Sstever@gmail.com print " ", ", ".join(warn_ignored_files) 2504937Sstever@gmail.com for f in copy_files: 2512929Sktlim@umich.edu if f in dest_files: 2522929Sktlim@umich.edu print " Replacing file", f 2532929Sktlim@umich.edu dest_files.remove(f) 2542929Sktlim@umich.edu else: 2552929Sktlim@umich.edu print " Creating new file", f 2562929Sktlim@umich.edu copyAction = Copy(os.path.join(dest_dir, f), os.path.join(src_dir, f)) 2572929Sktlim@umich.edu copyAction.strfunction = None 2586011Ssteve.reinhardt@amd.com env.Execute(copyAction) 2592929Sktlim@umich.edu return 0 2602929Sktlim@umich.edu 2612929Sktlim@umich.edudef update_test_string(target, source, env): 2622929Sktlim@umich.edu return env.subst("Updating ${SOURCES[0].dir} from ${SOURCES[1].dir}", 2632929Sktlim@umich.edu target=target, source=source) 2642929Sktlim@umich.edu 2652929Sktlim@umich.eduupdateAction = env.Action(update_test, update_test_string) 2662929Sktlim@umich.edu 2672997Sstever@eecs.umich.edudef test_builder(env, ref_dir): 2682997Sstever@eecs.umich.edu """Define a test.""" 2692929Sktlim@umich.edu 27010196SCurtis.Dunham@arm.com path = list(ref_dir.split('/')) 2712929Sktlim@umich.edu 27210196SCurtis.Dunham@arm.com # target path (where test output goes) consists of category, mode, 27310196SCurtis.Dunham@arm.com # name, isa, opsys, and config (skips the 'ref' component) 27410196SCurtis.Dunham@arm.com assert(path.pop(-4) == 'ref') 27510196SCurtis.Dunham@arm.com tgt_dir = os.path.join(*path[-6:]) 2762929Sktlim@umich.edu 27710196SCurtis.Dunham@arm.com # local closure for prepending target path to filename 2782997Sstever@eecs.umich.edu def tgt(f): 2792997Sstever@eecs.umich.edu return os.path.join(tgt_dir, f) 2802997Sstever@eecs.umich.edu 2815773Snate@binkert.org ref_stats = os.path.join(ref_dir, 'stats.txt') 2825773Snate@binkert.org new_stats = tgt('stats.txt') 2832997Sstever@eecs.umich.edu status_file = tgt('status') 2842997Sstever@eecs.umich.edu 2859922Ssteve.reinhardt@amd.com env.Command([status_file, new_stats], 2866007Ssteve.reinhardt@amd.com [env.M5Binary, 'run.py', ref_stats], 2872997Sstever@eecs.umich.edu testAction) 2882929Sktlim@umich.edu 2892997Sstever@eecs.umich.edu # phony target to echo status 2908120Sgblack@eecs.umich.edu if GetOption('update_ref'): 2912997Sstever@eecs.umich.edu p = env.Command(tgt('_update'), 2922997Sstever@eecs.umich.edu [ref_stats, new_stats, status_file], 2932997Sstever@eecs.umich.edu updateAction) 2942997Sstever@eecs.umich.edu else: 2952997Sstever@eecs.umich.edu p = env.Command(tgt('_print'), [status_file], printAction) 2962929Sktlim@umich.edu 2972997Sstever@eecs.umich.edu env.AlwaysBuild(p) 2982929Sktlim@umich.edu 2992929Sktlim@umich.edu 3003005Sstever@eecs.umich.edu# Figure out applicable configs based on build type 3013005Sstever@eecs.umich.educonfigs = [] 3028802Sgblack@eecs.umich.eduif env['TARGET_ISA'] == 'alpha': 3038802Sgblack@eecs.umich.edu configs += ['tsunami-simple-atomic', 3048802Sgblack@eecs.umich.edu 'tsunami-simple-timing', 3058802Sgblack@eecs.umich.edu 'tsunami-simple-atomic-dual', 3068802Sgblack@eecs.umich.edu 'tsunami-simple-timing-dual', 3078802Sgblack@eecs.umich.edu 'twosys-tsunami-simple-atomic', 3088802Sgblack@eecs.umich.edu 'tsunami-o3', 'tsunami-o3-dual', 30910260SAndrew.Bardsley@arm.com 'tsunami-minor', 'tsunami-minor-dual', 3109447SAndreas.Sandberg@ARM.com 'tsunami-inorder', 3119447SAndreas.Sandberg@ARM.com 'tsunami-switcheroo-full'] 3128802Sgblack@eecs.umich.eduif env['TARGET_ISA'] == 'sparc': 3138802Sgblack@eecs.umich.edu configs += ['t1000-simple-atomic', 3148802Sgblack@eecs.umich.edu 't1000-simple-timing'] 3158802Sgblack@eecs.umich.eduif env['TARGET_ISA'] == 'arm': 3168889Sgeoffrey.blake@arm.com configs += ['simple-atomic-dummychecker', 3178889Sgeoffrey.blake@arm.com 'o3-timing-checker', 3188889Sgeoffrey.blake@arm.com 'realview-simple-atomic', 3198802Sgblack@eecs.umich.edu 'realview-simple-atomic-dual', 3208802Sgblack@eecs.umich.edu 'realview-simple-timing', 3218802Sgblack@eecs.umich.edu 'realview-simple-timing-dual', 3228802Sgblack@eecs.umich.edu 'realview-o3', 3238889Sgeoffrey.blake@arm.com 'realview-o3-checker', 3249447SAndreas.Sandberg@ARM.com 'realview-o3-dual', 32510260SAndrew.Bardsley@arm.com 'realview-minor', 32610260SAndrew.Bardsley@arm.com 'realview-minor-dual', 3279447SAndreas.Sandberg@ARM.com 'realview-switcheroo-atomic', 3289447SAndreas.Sandberg@ARM.com 'realview-switcheroo-timing', 3299447SAndreas.Sandberg@ARM.com 'realview-switcheroo-o3', 3309447SAndreas.Sandberg@ARM.com 'realview-switcheroo-full'] 3318802Sgblack@eecs.umich.eduif env['TARGET_ISA'] == 'x86': 3328802Sgblack@eecs.umich.edu configs += ['pc-simple-atomic', 3338802Sgblack@eecs.umich.edu 'pc-simple-timing', 3349674Snilay@cs.wisc.edu 'pc-o3-timing', 3359674Snilay@cs.wisc.edu 'pc-switcheroo-full'] 3363691Shsul@eecs.umich.edu 33710260SAndrew.Bardsley@arm.comconfigs += ['simple-atomic', 'simple-atomic-mp', 33810260SAndrew.Bardsley@arm.com 'simple-timing', 'simple-timing-mp', 33910260SAndrew.Bardsley@arm.com 'inorder-timing', 34010260SAndrew.Bardsley@arm.com 'minor-timing', 'minor-timing-mp', 34110260SAndrew.Bardsley@arm.com 'o3-timing', 'o3-timing-mp', 34210260SAndrew.Bardsley@arm.com 'rubytest', 'memtest', 34310260SAndrew.Bardsley@arm.com 'tgen-simple-mem', 'tgen-dram-ctrl'] 3443005Sstever@eecs.umich.edu 3458492Snilay@cs.wisc.eduif env['PROTOCOL'] != 'None': 3466928SBrad.Beckmann@amd.com if env['PROTOCOL'] == 'MI_example': 3476928SBrad.Beckmann@amd.com configs += [c + "-ruby" for c in configs] 3486928SBrad.Beckmann@amd.com else: 3496928SBrad.Beckmann@amd.com configs = [c + "-ruby-" + env['PROTOCOL'] for c in configs] 3506166Ssteve.reinhardt@amd.com 35110196SCurtis.Dunham@arm.comsrc = Dir('.').srcdir 3523005Sstever@eecs.umich.edufor config in configs: 35310196SCurtis.Dunham@arm.com dirs = src.glob('*/*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config)) 3542997Sstever@eecs.umich.edu for d in dirs: 35510196SCurtis.Dunham@arm.com d = str(d) 3566293Ssteve.reinhardt@amd.com if not os.path.exists(os.path.join(d, 'skip')): 3576293Ssteve.reinhardt@amd.com test_builder(env, d) 358