From: Luke Kenneth Casson Leighton Date: Thu, 6 May 2021 12:40:28 +0000 (+0100) Subject: moved exts* SVP64 unit tests to a different location X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af8fa166370c2159b1694124b30eb59b85917c3c;p=soc.git moved exts* SVP64 unit tests to a different location --- diff --git a/src/soc/simple/test/test_issuer_svp64.py b/src/soc/simple/test/test_issuer_svp64.py index 8165ab59..5d970a2b 100644 --- a/src/soc/simple/test/test_issuer_svp64.py +++ b/src/soc/simple/test/test_issuer_svp64.py @@ -13,12 +13,14 @@ from soc.simple.test.test_runner import TestRunner # test with ALU data and Logical data from openpower.test.alu.svp64_cases import SVP64ALUTestCase +from openpower.test.logical.svp64_cases import SVP64LogicalTestCase if __name__ == "__main__": unittest.main(exit=False) suite = unittest.TestSuite() suite.addTest(TestRunner(SVP64ALUTestCase().test_data)) + suite.addTest(TestRunner(SVP64LogicalTestCase().test_data)) runner = unittest.TextTestRunner() runner.run(suite)