summaryrefslogtreecommitdiff
path: root/tests/configs
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2012-03-08 02:10:03 -0800
committerGabe Black <gblack@eecs.umich.edu>2012-03-08 02:10:03 -0800
commitcda4c2d280e9c1becf3b4d0b6b384f63641c45ba (patch)
treeb24c1614a16bbaa2bcec650f68b660f4ccede1d5 /tests/configs
parenteb43883bef3960a9325f26e1925ca8325330173c (diff)
downloadgem5-cda4c2d280e9c1becf3b4d0b6b384f63641c45ba.tar.xz
Fix the SPARC fs regression by adding a call to createInterruptController.
Diffstat (limited to 'tests/configs')
-rw-r--r--tests/configs/t1000-simple-atomic.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/configs/t1000-simple-atomic.py b/tests/configs/t1000-simple-atomic.py
index 217135bf0..7e94b5c98 100644
--- a/tests/configs/t1000-simple-atomic.py
+++ b/tests/configs/t1000-simple-atomic.py
@@ -34,6 +34,8 @@ import FSConfig
cpu = AtomicSimpleCPU(cpu_id=0)
system = FSConfig.makeSparcSystem('atomic')
system.cpu = cpu
+# create the interrupt controller
+cpu.createInterruptController()
cpu.connectAllPorts(system.membus)
root = Root(full_system=True, system=system)