From f050ebe3a87b0db01cfe2d6bee4fac083d659665 Mon Sep 17 00:00:00 2001 From: Brad Beckmann Date: Fri, 6 Apr 2012 13:47:06 -0700 Subject: MOESI_hammer: fixed bug with single cpu + flushes, then modified the regression tester to check this functionality --- tests/configs/rubytest-ruby.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'tests/configs') diff --git a/tests/configs/rubytest-ruby.py b/tests/configs/rubytest-ruby.py index 7bb7b9014..979295cf5 100644 --- a/tests/configs/rubytest-ruby.py +++ b/tests/configs/rubytest-ruby.py @@ -65,10 +65,16 @@ options.l1i_assoc=2 options.l2_assoc=2 options.l3_assoc=2 +# Turn on flush check for the hammer protocol +check_flush = False +if buildEnv['PROTOCOL'] == 'MOESI_hammer': + check_flush = True + # # create the tester and system, including ruby # -tester = RubyTester(checks_to_complete = 100, wakeup_frequency = 10) +tester = RubyTester(check_flush = check_flush, checks_to_complete = 100, + wakeup_frequency = 10) system = System(tester = tester, physmem = SimpleMemory()) -- cgit v1.2.3