From e3e2907b2f9b43b2afaa12d227a5534fc50eb2f4 Mon Sep 17 00:00:00 2001 From: Florrie Date: Tue, 4 Dec 2018 23:16:00 -0400 Subject: Stress test stuff Just to see if I can optimize tui-lib's ansi diffing. --- index.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'index.js') diff --git a/index.js b/index.js index 9682e95..d6dbcee 100755 --- a/index.js +++ b/index.js @@ -80,6 +80,28 @@ async function main() { root.fixAllLayout() }) + if (process.argv.includes('--stress-test')) { + const w = 80 + const h = 40 + flushable.resizeScreen({lines: w, cols: h}) + root.w = w + root.h = h + root.fixAllLayout() + const start = Date.now() + let n = 0 + while (Date.now() < start + 1000) { + root.renderTo(flushable) + flushable.flush() + n++ + } + + console.log(ansi.clearScreen() + ansi.cleanCursor()) + console.log('# of times ran:', n) + process.exit(0) + + return + } + setInterval(() => { root.renderTo(flushable) flushable.flush() -- cgit 1.3.0-6-gf8a5