mirror of
https://github.com/neovim/neovim.git
synced 2026-05-06 08:26:45 -04:00
55f9c2136e
Replace the busted-based Lua test runner with a repo-local harness. The new harness runs spec files directly under `nvim -ll`, ships its own reporter and lightweight `luassert` shim, and keeps the helper/preload flow used by the functional and unit test suites. Keep the file boundary model shallow and busted-like by restoring `_G`, `package.loaded`, `package.preload`, `arg`, and the process environment between files, without carrying extra reset APIs or custom assertion machinery. Update the build and test entrypoints to use the new runner, add black-box coverage for the harness itself, and drop the bundled busted/luacheck dependency path. AI-assisted: Codex
16 lines
485 B
Lua
16 lines
485 B
Lua
-- Modules loaded here will not be cleared and reloaded by the local harness.
|
|
-- Keeping these preloaded preserves cross-file setup while still resetting
|
|
-- non-helper modules between files.
|
|
local t = require('test.testutil')
|
|
require('test.functional.testnvim')()
|
|
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
|