]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Reduce speed test cycles in unit tests
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 3 Jul 2018 12:58:49 +0000 (13:58 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 3 Jul 2018 12:58:49 +0000 (13:58 +0100)
test/lua/unit/base64.lua
test/lua/unit/siphash.lua

index 1ed04f6f72ce5de36cbe2e105a5f11a99f42bc68..add031a45d01d0647adc99680802d7d1e4764aa2 100644 (file)
@@ -114,9 +114,12 @@ vehemence of any carnal pleasure.]]
       assert_equal(cmp, 0, "fuzz test failed for length: " .. tostring(l))
     end
   end)
+
+  local speed_iters = 10000
+
   test("Base64 test reference vectors 1K", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.base64_test(true, 1000000, 1024)
+    local res = ffi.C.base64_test(true, speed_iters, 1024)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Reference base64 (1K): " .. tostring(t2 - t1) .. " sec")
@@ -124,7 +127,7 @@ vehemence of any carnal pleasure.]]
   end)
   test("Base64 test optimized vectors 1K", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.base64_test(false, 1000000, 1024)
+    local res = ffi.C.base64_test(false, speed_iters, 1024)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Optimized base64 (1K): " .. tostring(t2 - t1) .. " sec")
@@ -132,7 +135,7 @@ vehemence of any carnal pleasure.]]
   end)
     test("Base64 test reference vectors 512", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.base64_test(true, 1000000, 512)
+    local res = ffi.C.base64_test(true, speed_iters, 512)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Reference base64 (512): " .. tostring(t2 - t1) .. " sec")
@@ -140,7 +143,7 @@ vehemence of any carnal pleasure.]]
   end)
   test("Base64 test optimized vectors 512", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.base64_test(false, 1000000, 512)
+    local res = ffi.C.base64_test(false, speed_iters, 512)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Optimized base64 (512): " .. tostring(t2 - t1) .. " sec")
@@ -148,7 +151,7 @@ vehemence of any carnal pleasure.]]
   end)
     test("Base64 test reference vectors 10K", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.base64_test(true, 100000, 10240)
+    local res = ffi.C.base64_test(true, speed_iters / 100, 10240)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Reference base64 (10K): " .. tostring(t2 - t1) .. " sec")
@@ -156,7 +159,7 @@ vehemence of any carnal pleasure.]]
   end)
   test("Base64 test optimized vectors 10K", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.base64_test(false, 100000, 10240)
+    local res = ffi.C.base64_test(false, speed_iters / 100, 10240)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Optimized base64 (10K): " .. tostring(t2 - t1) .. " sec")
index 3c92d25817e8563a0c80fbdcd7bfcef6ab8925ab..13f02eaf3e62bbd39dafac807906dbe9981abb71 100644 (file)
@@ -11,9 +11,11 @@ context("Siphash check functions", function()
 
   ffi.C.rspamd_cryptobox_init()
 
+  local speed_iters = 1000
+
   test("Siphash test reference vectors (1KB)", function()
     local t1 = ffi.C.rspamd_get_ticks()
-     local res = ffi.C.siphash24_test(true, 100000, 1024)
+     local res = ffi.C.siphash24_test(true, speed_iters, 1024)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Reference siphash (1KB): " .. tostring(t2 - t1) .. " sec")
@@ -21,7 +23,7 @@ context("Siphash check functions", function()
   end)
   test("Siphash test optimized vectors (1KB)", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.siphash24_test(false, 100000, 1024)
+    local res = ffi.C.siphash24_test(false, speed_iters, 1024)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Optimized siphash (1KB): " .. tostring(t2 - t1) .. " sec")
@@ -29,7 +31,7 @@ context("Siphash check functions", function()
   end)
   test("Siphash test reference vectors (5B)", function()
     local t1 = ffi.C.rspamd_get_ticks()
-     local res = ffi.C.siphash24_test(true, 1000000, 5)
+     local res = ffi.C.siphash24_test(true, speed_iters, 5)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Reference siphash (5B): " .. tostring(t2 - t1) .. " sec")
@@ -37,7 +39,7 @@ context("Siphash check functions", function()
   end)
   test("Siphash test optimized vectors (5B)", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.siphash24_test(false, 1000000, 5)
+    local res = ffi.C.siphash24_test(false, speed_iters, 5)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Optimized siphash (5B): " .. tostring(t2 - t1) .. " sec")
@@ -45,7 +47,7 @@ context("Siphash check functions", function()
   end)
   test("Siphash test reference vectors (50B)", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.siphash24_test(true, 1000000, 50)
+    local res = ffi.C.siphash24_test(true, speed_iters, 50)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Reference siphash (50B): " .. tostring(t2 - t1) .. " sec")
@@ -53,7 +55,7 @@ context("Siphash check functions", function()
   end)
   test("Siphash test optimized vectors (50B)", function()
     local t1 = ffi.C.rspamd_get_ticks()
-    local res = ffi.C.siphash24_test(false, 1000000, 50)
+    local res = ffi.C.siphash24_test(false, speed_iters, 50)
     local t2 = ffi.C.rspamd_get_ticks()
 
     print("Optimized siphash (50B): " .. tostring(t2 - t1) .. " sec")