increase number of test runs
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 31 Jul 2019 23:13:51 +0000 (00:13 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 31 Jul 2019 23:13:51 +0000 (00:13 +0100)
src/ieee754/fcvt/test/test_fcvt_pipe_32_16.py
src/ieee754/fcvt/test/test_fcvt_pipe_64_16.py
src/ieee754/fcvt/test/test_fcvt_pipe_64_32.py

index 844c744a8ff2b62cc393c8c7ef003fb45df320d1..6f8449cebbfe1baf3a17b591484c4b71b7ee4b85 100644 (file)
@@ -14,7 +14,7 @@ def fcvt_16(x):
 def test_pipe_fp32_16():
     dut = FPCVTDownMuxInOut(32, 16, 4)
     run_pipe_fp(dut, 32, "fcvt", unit_test_single, Float32,
-                regressions, fcvt_16, 10, True)
+                regressions, fcvt_16, 100, True)
 
 if __name__ == '__main__':
     test_pipe_fp32_16()
index 377f937620d0516c22750247c1ee3bdd1d9144f8..c501e9a614f365f91a861f6719767b564158902a 100644 (file)
@@ -14,7 +14,7 @@ def fcvt_16(x):
 def test_pipe_fp64_16():
     dut = FPCVTDownMuxInOut(64, 16, 4)
     run_pipe_fp(dut, 64, "fcvt", unit_test_single, Float64,
-                regressions, fcvt_16, 10, True)
+                regressions, fcvt_16, 100, True)
 
 if __name__ == '__main__':
     test_pipe_fp64_16()
index c0a22fea49fa0958a3c76f69a3e226a2b4a8d168..c3d3054d3d60aa8c28c9918631b134928ce93f1a 100644 (file)
@@ -14,7 +14,7 @@ def fcvt_32(x):
 def test_pipe_fp64_32():
     dut = FPCVTMuxInOut(64, 32, 4)
     run_pipe_fp(dut, 64, "fcvt", unit_test_single, Float64,
-                regressions, fcvt_32, 10, True)
+                regressions, fcvt_32, 100, True)
 
 if __name__ == '__main__':
     test_pipe_fp64_32()