Allow the formal engine to perform a same-cycle result in the ALU
[soc.git] / src / soc / simple / test / test_issuer_svp64.py
index 8165ab595f7c1027dfbbb5989c4843a600211859..5d970a2b47ba772b17ec83a6b668424ff7a88b02 100644 (file)
@@ -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)