summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-07-21 15:46:12 -0400
committerKevin Lim <ktlim@umich.edu>2006-07-21 15:46:12 -0400
commitbf90e1dbde78906b2d2831c123166ce19cf0ec53 (patch)
treeeb8c710612dad8a28c805131084a6fe0253c2dd1 /SConstruct
parentbd33d8d4ac43569f0c163b35aae13d2677faa875 (diff)
downloadgem5-bf90e1dbde78906b2d2831c123166ce19cf0ec53.tar.xz
Minor functionality updates.
SConstruct: Include an option to specify the CPUs being tested. src/cpu/SConscript: Checker isn't SMT right now, so don't do SMT tests with the O3CPU if we're using the checker. src/python/m5/objects/O3CPU.py: Include default options. Unfortunately FullO3Config.py is still needed because it specifies which FUPool is being used. tests/SConscript: Several minor updates (sorry for one commit). Updated the copyright and fixed some m5 style issues. Also added the ability to specify which CPUs to run the tests on. --HG-- extra : convert_revision : b0b801115705544ea02e572e31314f7bb8b5f0f2
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 259b6c583..ce80068f3 100644
--- a/SConstruct
+++ b/SConstruct
@@ -279,6 +279,8 @@ sticky_opts.AddOptions(
# scons 0.96.90 or later.
ListOption('CPU_MODELS', 'CPU models', 'AtomicSimpleCPU,TimingSimpleCPU',
env['ALL_CPU_LIST']),
+ ListOption('TEST_CPU_MODELS', 'CPU models to test if regression is being run', '',
+ env['ALL_CPU_LIST']),
BoolOption('ALPHA_TLASER',
'Model Alpha TurboLaser platform (vs. Tsunami)', False),
BoolOption('NO_FAST_ALLOC', 'Disable fast object allocator', False),