summaryrefslogtreecommitdiff
path: root/test-beta/full/example.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2020-11-20 21:57:09 +0800
committer最萌小汐 <sumneko@hotmail.com>2020-11-20 21:57:09 +0800
commit4ca61ec457822dd14966afa0752340ae8ce180a1 (patch)
treeae8adb1ad82c717868e551e699fd3cf3bb290089 /test-beta/full/example.lua
parentc63b2e404d8d2bb984afe3678a5ba2b2836380cc (diff)
downloadlua-language-server-4ca61ec457822dd14966afa0752340ae8ce180a1.zip
no longer beta
Diffstat (limited to 'test-beta/full/example.lua')
-rw-r--r--test-beta/full/example.lua45
1 files changed, 0 insertions, 45 deletions
diff --git a/test-beta/full/example.lua b/test-beta/full/example.lua
deleted file mode 100644
index e409b4b2..00000000
--- a/test-beta/full/example.lua
+++ /dev/null
@@ -1,45 +0,0 @@
-local util = require 'utility'
-local parser = require 'parser'
-local files = require 'files'
-local diag = require 'core.diagnostics'
-local config = require 'config'
-
--- 临时
-local function testIfExit(path)
- config.config.workspace.preloadFileSize = 1000000000
- 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('', function () end)
- 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')