From: Luke Kenneth Casson Leighton Date: Mon, 12 Sep 2022 14:31:30 +0000 (+0100) Subject: add extra tests "add." "addo" etc. to test_pysvp64dis.py X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=965419ac107ba3821af5c0258789dcd15f21811a;p=openpower-isa.git add extra tests "add." "addo" etc. to test_pysvp64dis.py --- diff --git a/src/openpower/sv/trans/test_pysvp64dis.py b/src/openpower/sv/trans/test_pysvp64dis.py index 2096e458..cc492249 100644 --- a/src/openpower/sv/trans/test_pysvp64dis.py +++ b/src/openpower/sv/trans/test_pysvp64dis.py @@ -27,8 +27,12 @@ class SVSTATETestCase(unittest.TestCase): "'%s' expected '%s'" % (line, expected[i])) - def test_0_addi(self): + def test_0_add(self): expected = ['addi 1,5,2', + 'add 1,5,2', + 'add. 1,5,2', + 'addo 1,5,2', + 'addo. 1,5,2', ] self._do_tst(expected)