From 72b3d3deb2993f738d2a2e937f5d8e92336f16b3 Mon Sep 17 00:00:00 2001 From: bel Date: Thu, 2 Jul 2015 22:50:51 +0200 Subject: [PATCH] Reduce test default from 10000 images to 1000 (number can be configured as ?cnt=1000) --- test/{10000images.lua => 1000images.lua} | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) rename test/{10000images.lua => 1000images.lua} (98%) diff --git a/test/10000images.lua b/test/1000images.lua similarity index 98% rename from test/10000images.lua rename to test/1000images.lua index a851226f..8601a42a 100644 --- a/test/10000images.lua +++ b/test/1000images.lua @@ -4,9 +4,15 @@ mg.write("Content-Type: text/html; charset=utf-8\r\n") mg.write("\r\n") t = os.time() -cnt = 10000 if not mg.request_info.query_string then + cnt = 1000 +else + cnt = tonumber(mg.get_var(mg.request_info.query_string, "cnt")) +end + +cnt = 100*math.floor(cnt/100) + mg.write([[ @@ -191,4 +197,3 @@ mg.write([[ ]]) -end \ No newline at end of file