Daniel Carvalho has uploaded this change for review. (
https://gem5-review.googlesource.com/c/public/gem5/+/18708
Change subject: configs: Fix import scope of test
......................................................................
configs: Fix import scope of test
Add missing scope delimiters to Alpha tester
Change-Id: Ib6796864c0dc8fc3108d9d2a7c2f770d2122889a
Signed-off-by: Daniel R. Carvalho <[email protected]>
---
M tests/configs/twosys-tsunami-simple-atomic.py
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tests/configs/twosys-tsunami-simple-atomic.py
b/tests/configs/twosys-tsunami-simple-atomic.py
index 3892745..0ba92f4 100644
--- a/tests/configs/twosys-tsunami-simple-atomic.py
+++ b/tests/configs/twosys-tsunami-simple-atomic.py
@@ -31,8 +31,8 @@
m5.util.addToPath('../configs/')
from common import Benchmarks, FSConfig, SysPaths
-test_sys = makeLinuxAlphaSystem('atomic',
- SysConfig('netperf-stream-client.rcS'))
+test_sys = FSConfig.makeLinuxAlphaSystem('atomic',
+ Benchmarks.SysConfig('netperf-stream-client.rcS'))
test_sys.kernel = SysPaths.binary('vmlinux')
# Dummy voltage domain for all test_sys clock domains
@@ -68,8 +68,8 @@
test_sys.physmem = SimpleMemory(range = test_sys.mem_ranges[0])
test_sys.physmem.port = test_sys.membus.master
-drive_sys = makeLinuxAlphaSystem('atomic',
- SysConfig('netperf-server.rcS'))
+drive_sys = FSConfig.makeLinuxAlphaSystem('atomic',
+ Benchmarks.SysConfig('netperf-server.rcS'))
drive_sys.kernel = SysPaths.binary('vmlinux')
# Dummy voltage domain for all drive_sys clock domains
drive_sys.voltage_domain = VoltageDomain()
@@ -100,6 +100,6 @@
drive_sys.physmem = SimpleMemory(range = drive_sys.mem_ranges[0])
drive_sys.physmem.port = drive_sys.membus.master
-root = makeDualRoot(True, test_sys, drive_sys, "ethertrace")
+root = FSConfig.makeDualRoot(True, test_sys, drive_sys, "ethertrace")
maxtick = 199999999
--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/18708
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: Ib6796864c0dc8fc3108d9d2a7c2f770d2122889a
Gerrit-Change-Number: 18708
Gerrit-PatchSet: 1
Gerrit-Owner: Daniel Carvalho <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev