diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-11-22 23:26:32 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-11-22 23:26:32 +0800 |
commit | d0ff66c9abe9d6abbca12fd811e0c3cb69c1033a (patch) | |
tree | bb34518d70b85de7656dbdbe958dfa221a3ff3b3 /server-beta/test/full/example.lua | |
parent | 0a2c2ad15e1ec359171fb0dd4c72e57c5b66e9ba (diff) | |
download | lua-language-server-d0ff66c9abe9d6abbca12fd811e0c3cb69c1033a.zip |
整理一下目录结构
Diffstat (limited to 'server-beta/test/full/example.lua')
-rw-r--r-- | server-beta/test/full/example.lua | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/server-beta/test/full/example.lua b/server-beta/test/full/example.lua deleted file mode 100644 index 5b096655..00000000 --- a/server-beta/test/full/example.lua +++ /dev/null @@ -1,43 +0,0 @@ -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') |