Files
neovim/test/functional/preload.lua
bfredl 0458a1e694 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
2025-09-15 12:10:23 +02:00

15 lines
435 B
Lua

-- Modules loaded here will NOT be cleared and reloaded by Busted.
-- Busted started doing this to help provide more isolation. See issue #62
-- for more information about this.
local t = require('test.testutil')
require('test.functional.ui.screen')
local has_ffi, ffi = pcall(require, 'ffi')
if t.is_os('win') and has_ffi then
ffi.cdef [[
typedef int errno_t;
errno_t _set_fmode(int mode);
]]
ffi.C._set_fmode(0x8000)
end