diff options
Diffstat (limited to 'tests/configs/rubytest-ruby.py')
-rw-r--r-- | tests/configs/rubytest-ruby.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/configs/rubytest-ruby.py b/tests/configs/rubytest-ruby.py index b63833ccf..116afa2b6 100644 --- a/tests/configs/rubytest-ruby.py +++ b/tests/configs/rubytest-ruby.py @@ -34,9 +34,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. It's expected this file is in m5/configs/example. config_path = os.path.dirname(os.path.abspath(__file__)) config_root = os.path.dirname(config_path) @@ -109,7 +106,7 @@ for ruby_port in system.ruby._cpu_ruby_ports: # 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 |