diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2014-03-20 09:14:14 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2014-03-20 09:14:14 -0500 |
commit | b5cc4c760478240bf8c5f7de977bf2b56fd8dfd4 (patch) | |
tree | f4d9bf0eee60c59b294f8e25504e67e58bfdd1f6 /tests/configs/rubytest-ruby.py | |
parent | f2059f8399b22ecc544413a0e9d5a13a6f965411 (diff) | |
download | gem5-b5cc4c760478240bf8c5f7de977bf2b56fd8dfd4.tar.xz |
config: ruby: rename _cpu_ruby_ports to _cpu_ports
Diffstat (limited to 'tests/configs/rubytest-ruby.py')
-rw-r--r-- | tests/configs/rubytest-ruby.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configs/rubytest-ruby.py b/tests/configs/rubytest-ruby.py index 9fe85d14f..f2c88c92b 100644 --- a/tests/configs/rubytest-ruby.py +++ b/tests/configs/rubytest-ruby.py @@ -92,7 +92,7 @@ Ruby.create_system(options, system) system.ruby.clk_domain = SrcClockDomain(clock = '1GHz', voltage_domain = system.voltage_domain) -assert(options.num_cpus == len(system.ruby._cpu_ruby_ports)) +assert(options.num_cpus == len(system.ruby._cpu_ports)) # # The tester is most effective when randomization is turned on and @@ -100,7 +100,7 @@ assert(options.num_cpus == len(system.ruby._cpu_ruby_ports)) # system.ruby.randomization = True -for ruby_port in system.ruby._cpu_ruby_ports: +for ruby_port in system.ruby._cpu_ports: # # Tie the ruby tester ports to the ruby cpu read and write ports # |