From: Tobias Platen Date: Mon, 14 Jun 2021 18:02:49 +0000 (+0200) Subject: update testcase for ldst X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=00f347e5692f0df01d38b5d7e8d8f6ef26cd213b;p=soc.git update testcase for ldst --- 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)