From f7a4ccb409c14fed9c52956765c95b10bacb779a Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 11 Feb 2013 22:50:30 -0800 Subject: [PATCH] bench: Move nexttick-2 to misc/next-tick-depth x --- .../next-tick-depth.js} | 33 +++++++++---------- 1 file changed, 16 insertions(+), 17 deletions(-) rename benchmark/{next-tick-2.js => misc/next-tick-depth.js} (73%) diff --git a/benchmark/next-tick-2.js b/benchmark/misc/next-tick-depth.js similarity index 73% rename from benchmark/next-tick-2.js rename to benchmark/misc/next-tick-depth.js index 44a2b41b54..b8ae27879e 100644 --- a/benchmark/next-tick-2.js +++ b/benchmark/misc/next-tick-depth.js @@ -19,23 +19,22 @@ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. -var count = 2e6, - left = count, - start; +var common = require('../common.js'); +var bench = common.createBenchmark(main, { + millions: [2] +}); -function onNextTick() { - if (--left) { - process.nextTick(onNextTick); - } else { - finalize(); - } -} +process.maxTickDepth = Infinity; -function finalize() { - var duration = (new Date()).getTime() - start, - ticksPerSec = count / duration * 1000; - console.log("nextTick callbacks per second: " + Math.round(ticksPerSec)); -} +function main(conf) { + var n = +conf.millions * 1e6; -start = (new Date()).getTime(); -process.nextTick(onNextTick); + bench.start(); + process.nextTick(onNextTick); + function onNextTick() { + if (--n) + process.nextTick(onNextTick); + else + bench.end(+conf.millions); + } +}