From: Luke Kenneth Casson Leighton Date: Sun, 18 Sep 2022 16:17:04 +0000 (+0100) Subject: dumb. accidentally removed test-call X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=150e8188344e915d27832e89fbffa2b3390f73cb;p=openpower-isa.git dumb. accidentally removed test-call --- diff --git a/src/openpower/sv/trans/test_pysvp64dis.py b/src/openpower/sv/trans/test_pysvp64dis.py index 585bb706..4cd442b5 100644 --- a/src/openpower/sv/trans/test_pysvp64dis.py +++ b/src/openpower/sv/trans/test_pysvp64dis.py @@ -220,6 +220,7 @@ class SVSTATETestCase(unittest.TestCase): "sv.add/ff=~RC1 *3,*7,*11", "sv.add/pr=~RC1 *3,*7,*11", ] + self._do_tst(expected) def test_14_rc1_ff_pr(self): expected = [ @@ -228,6 +229,7 @@ class SVSTATETestCase(unittest.TestCase): "sv.add./pr=eq *3,*7,*11", "sv.add./pr=ns *3,*7,*11", ] + self._do_tst(expected) if __name__ == "__main__": unittest.main()