From 00f347e5692f0df01d38b5d7e8d8f6ef26cd213b Mon Sep 17 00:00:00 2001 From: Tobias Platen Date: Mon, 14 Jun 2021 20:02:49 +0200 Subject: [PATCH] update testcase for ldst --- src/soc/experiment/test/test_ldst_pi.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/soc/experiment/test/test_ldst_pi.py b/src/soc/experiment/test/test_ldst_pi.py index 76dab732..44ba0416 100644 --- a/src/soc/experiment/test/test_ldst_pi.py +++ b/src/soc/experiment/test/test_ldst_pi.py @@ -355,17 +355,14 @@ def ldst_sim_dcache_first(dut): # this test is likely to fail addr = 65888 data = 0x8c5a3e460d71f0b4 - # known to fail - yield from pi_st(pi, addr, data, 8, msr_pr=1) - yield - # guess will not fail + # known to fail without bugfix in src/soc/fu/ldst/loadstore.py yield from pi_st(pi, addr, data, 8, msr_pr=1) yield ld_data = yield from pi_ld(pi, addr, 8, msr_pr=1) print ("addr",addr) - print ("dcache_random random ld data", hex(data), hex(ld_data)) + print ("dcache_first ld data", hex(data), hex(ld_data)) assert(data==ld_data) -- 2.30.2