mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 02:08:17 +00:00
build(ci): bump zig to 0.15.1 and add more platforms
- Bump zig version to 0.15.1 and workaround zig fetch hang (ziglang/zig#24916) - add mac os zig build (currently without luajit, linker failure) - Add windows zig build, currently with very limited testing
This commit is contained in:
@@ -463,9 +463,9 @@ describe('lua stdlib', function()
|
||||
eq(false, fn.luaeval "vim.v['false']")
|
||||
eq(NIL, fn.luaeval 'vim.v.null')
|
||||
matches([[attempt to index .* nil value]], pcall_err(exec_lua, 'return vim.v[0].progpath'))
|
||||
eq('Key is read-only: count', pcall_err(exec_lua, [[vim.v.count = 42]]))
|
||||
eq('Dict is locked', pcall_err(exec_lua, [[vim.v.nosuchvar = 42]]))
|
||||
eq('Key is fixed: errmsg', pcall_err(exec_lua, [[vim.v.errmsg = nil]]))
|
||||
matches('Key is read%-only: count$', pcall_err(exec_lua, [[vim.v.count = 42]]))
|
||||
matches('Dict is locked$', pcall_err(exec_lua, [[vim.v.nosuchvar = 42]]))
|
||||
matches('Key is fixed: errmsg$', pcall_err(exec_lua, [[vim.v.errmsg = nil]]))
|
||||
exec_lua([[vim.v.errmsg = 'set by Lua']])
|
||||
eq('set by Lua', eval('v:errmsg'))
|
||||
exec_lua([[vim.v.errmsg = 42]])
|
||||
@@ -474,8 +474,8 @@ describe('lua stdlib', function()
|
||||
eq({ 'one', 'two' }, eval('v:oldfiles'))
|
||||
exec_lua([[vim.v.oldfiles = {}]])
|
||||
eq({}, eval('v:oldfiles'))
|
||||
eq(
|
||||
'Setting v:oldfiles to value with wrong type',
|
||||
matches(
|
||||
'Setting v:oldfiles to value with wrong type$',
|
||||
pcall_err(exec_lua, [[vim.v.oldfiles = 'a']])
|
||||
)
|
||||
eq({}, eval('v:oldfiles'))
|
||||
|
Reference in New Issue
Block a user