From 965419ac107ba3821af5c0258789dcd15f21811a Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 12 Sep 2022 15:31:30 +0100 Subject: [PATCH] add extra tests "add." "addo" etc. to test_pysvp64dis.py --- src/openpower/sv/trans/test_pysvp64dis.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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) -- 2.30.2