add extra tests "add." "addo" etc. to test_pysvp64dis.py
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 12 Sep 2022 14:31:30 +0000 (15:31 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 12 Sep 2022 14:31:30 +0000 (15:31 +0100)
src/openpower/sv/trans/test_pysvp64dis.py

index 2096e458c3b2ebf4a540e36df731e32c7685279e..cc4922494f648792a1bc56fd85162c26978c8414 100644 (file)
@@ -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)