summaryrefslogtreecommitdiff
path: root/test-beta/full/example.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-11-23 00:05:30 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-11-23 00:05:30 +0800
commit6da2b175e20ed3c03b0dfcfc9046de1e0e5d4444 (patch)
treefdc22d78150fd1c5edc46732c8b151ccfefb519f /test-beta/full/example.lua
parentd0ff66c9abe9d6abbca12fd811e0c3cb69c1033a (diff)
downloadlua-language-server-6da2b175e20ed3c03b0dfcfc9046de1e0e5d4444.zip
正路目录
Diffstat (limited to 'test-beta/full/example.lua')
-rw-r--r--test-beta/full/example.lua43
1 files changed, 43 insertions, 0 deletions
diff --git a/test-beta/full/example.lua b/test-beta/full/example.lua
new file mode 100644
index 00000000..5b096655
--- /dev/null
+++ b/test-beta/full/example.lua
@@ -0,0 +1,43 @@
+local util = require 'utility'
+local parser = require 'parser'
+local files = require 'files'
+local diag = require 'core.diagnostics'
+
+-- 临时
+local function testIfExit(path)
+ local buf = util.loadFile(path:string())
+ if buf then
+ local vm
+
+ local clock = os.clock()
+ local max = 100
+ local need
+ for i = 1, max do
+ vm = TEST(buf)
+ local passed = os.clock() - clock
+ if passed >= 1.0 or i == max then
+ need = passed / i
+ break
+ end
+ end
+ print(('基准编译测试[%s]单次耗时:%.10f'):format(path:filename():string(), need))
+
+ local clock = os.clock()
+ local max = 100
+ local need
+ local lines = parser:lines(buf)
+ for i = 1, max do
+ files.removeAll()
+ files.setText('', buf)
+ diag('')
+ local passed = os.clock() - clock
+ if passed >= 1.0 or i == max then
+ need = passed / i
+ break
+ end
+ end
+ print(('基准诊断测试[%s]单次耗时:%.10f'):format(path:filename():string(), need))
+ end
+end
+testIfExit(ROOT / 'test' / 'example' / 'vm.txt')
+testIfExit(ROOT / 'test' / 'example' / 'largeGlobal.txt')