blob: 2739a6504ac8ca7e27ffb8bfa5cb2d7d836782f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
local fs = require 'bee.filesystem'
ROOT = fs.current_path()
LANG = 'en-US'
package.path = (ROOT / 'src' / '?.lua'):string()
.. ';' .. (ROOT / 'src' / '?' / 'init.lua'):string()
.. ';' .. (ROOT / 'test' / '?.lua'):string()
.. ';' .. (ROOT / 'test' / '?' / 'init.lua'):string()
log = require 'log'
log.init(ROOT, ROOT / 'log' / 'test.log')
log.debug('测试开始')
require 'utility'
require 'global_protect'
local function main()
local function test(name)
local clock = os.clock()
print(('测试[%s]...'):format(name))
require(name)
print(('测试[%s]用时[%.3f]'):format(name, os.clock() - clock))
end
test 'matcher'
test 'vm'
test 'definition'
test 'diagnostics'
test 'type_inference'
test 'find_lib'
test 'hover'
test 'completion'
print('测试完成')
end
main()
log.debug('测试完成')
|