From: Cesar Strauss Date: Tue, 17 Aug 2021 11:37:47 +0000 (-0300) Subject: Enable LD/ST exception test case X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f08ee8abb53134dc25b21a0e827395e33901a0c3;p=soc.git Enable LD/ST exception test case It helps for implementing exception handling in TestIssuer --- 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)