diff options
Diffstat (limited to 'tests/configs/simple-timing-mp-ruby.py')
-rw-r--r-- | tests/configs/simple-timing-mp-ruby.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/configs/simple-timing-mp-ruby.py b/tests/configs/simple-timing-mp-ruby.py index d57ccea15..9919cabcb 100644 --- a/tests/configs/simple-timing-mp-ruby.py +++ b/tests/configs/simple-timing-mp-ruby.py @@ -32,9 +32,6 @@ from m5.defines import buildEnv from m5.util import addToPath import os, optparse, sys -if buildEnv['FULL_SYSTEM']: - panic("This script requires system-emulation mode (*_SE).") - # Get paths we might need config_path = os.path.dirname(os.path.abspath(__file__)) config_root = os.path.dirname(config_path) @@ -92,7 +89,7 @@ for (i, cpu) in enumerate(system.cpu): # run simulation # ----------------------- -root = Root( system = system ) +root = Root( full_system=False, system = system ) root.system.mem_mode = 'timing' # Not much point in this being higher than the L1 latency |