From f08ee8abb53134dc25b21a0e827395e33901a0c3 Mon Sep 17 00:00:00 2001 From: Cesar Strauss Date: Tue, 17 Aug 2021 08:37:47 -0300 Subject: [PATCH] Enable LD/ST exception test case It helps for implementing exception handling in TestIssuer --- src/soc/simple/test/test_issuer_mmu.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/soc/simple/test/test_issuer_mmu.py b/src/soc/simple/test/test_issuer_mmu.py index 4bf4d37a..a45071f8 100644 --- a/src/soc/simple/test/test_issuer_mmu.py +++ b/src/soc/simple/test/test_issuer_mmu.py @@ -50,8 +50,10 @@ if __name__ == "__main__": microwatt_mmu=True)) # LD/ST exception cases - #suite.addTest(TestRunner(LDSTExceptionTestCase().test_data, svp64=svp64, - # microwatt_mmu=True)) + # TODO: Depends on TestIssuer passing the exception condition to + # PowerDecoder2 + suite.addTest(TestRunner(LDSTExceptionTestCase().test_data, svp64=svp64, + microwatt_mmu=True)) runner = unittest.TextTestRunner() runner.run(suite) -- 2.30.2