From: Dmitry Selyutin Date: Sat, 24 Sep 2022 15:17:59 +0000 (+0300) Subject: test_pysvp64dis: test ld/st idx SEA (simple) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=26851e63dcb1a6d379070c7722a5d4c56fc89872;p=openpower-isa.git test_pysvp64dis: test ld/st idx SEA (simple) --- diff --git a/src/openpower/sv/trans/test_pysvp64dis.py b/src/openpower/sv/trans/test_pysvp64dis.py index 9f5dd88a..6bcfcc84 100644 --- a/src/openpower/sv/trans/test_pysvp64dis.py +++ b/src/openpower/sv/trans/test_pysvp64dis.py @@ -288,6 +288,12 @@ class SVSTATETestCase(unittest.TestCase): ] self._do_tst(expected) + def test_18_sea(self): + expected = [ + "sv.ldux/sea 5,6,7", + ] + self._do_tst(expected) + + if __name__ == "__main__": unittest.main() -