From 5372f181b127396bcc7aa39d4c4401cb18855137 Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Fri, 25 Mar 2016 14:05:52 -0700 Subject: [PATCH] add in missing connections for regression test --- groundtest/src/main/scala/regression.scala | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/groundtest/src/main/scala/regression.scala b/groundtest/src/main/scala/regression.scala index c8471db6..fe971162 100644 --- a/groundtest/src/main/scala/regression.scala +++ b/groundtest/src/main/scala/regression.scala @@ -415,18 +415,24 @@ class RegressionTest(implicit p: Parameters) extends GroundTest()(p) { regress.mem.grant.bits := io.mem.grant.bits regress.cache.req.ready := io.cache.req.ready && me regress.cache.resp.valid := io.cache.resp.valid && me + regress.cache.resp.bits := io.cache.resp.bits + regress.cache.xcpt := io.cache.xcpt + regress.cache.ordered := io.cache.ordered + regress.cache.replay_next.valid := io.cache.replay_next.valid && me + regress.cache.replay_next.bits := io.cache.replay_next.bits } val cur_regression = regressIOs(regress_idx) val cur_acquire = cur_regression.mem.acquire val cur_grant = cur_regression.mem.grant - val cur_cache_req = cur_regression.cache.req + val cur_cache = cur_regression.cache io.mem.acquire.valid := cur_acquire.valid io.mem.acquire.bits := cur_acquire.bits io.mem.grant.ready := cur_grant.ready - io.cache.req.valid := cur_cache_req.valid - io.cache.req.bits := cur_cache_req.bits + io.cache.req.valid := cur_cache.req.valid + io.cache.req.bits := cur_cache.req.bits + io.cache.invalidate_lr := cur_cache.invalidate_lr when (cur_regression.finished && !all_done) { start := Bool(true)