From: Dmitry Selyutin Date: Tue, 20 Sep 2022 12:55:33 +0000 (+0300) Subject: test_pysvp64dis: test vli specifier X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3bba509fd0bb6ab12818bae6286808ccab76cc69;p=openpower-isa.git test_pysvp64dis: test vli specifier --- diff --git a/src/openpower/sv/trans/test_pysvp64dis.py b/src/openpower/sv/trans/test_pysvp64dis.py index 4b751118..874efac1 100644 --- a/src/openpower/sv/trans/test_pysvp64dis.py +++ b/src/openpower/sv/trans/test_pysvp64dis.py @@ -294,6 +294,12 @@ class SVSTATETestCase(unittest.TestCase): ] self._do_tst(expected) + def test_17_vli(self): + expected = [ + "sv.add/ff=RC1/vli 3,7,11", + ] + self._do_tst(expected) + if __name__ == "__main__": unittest.main()