mirror of
https://github.com/neovim/neovim.git
synced 2026-09-02 20:34:06 +00:00
Problem:
Test sockets live under `$TMPDIR`, which the harness points at the build
dir. On macOS/BSD `sockaddr_un.sun_path` is 104 bytes, and a CI build
path plus "nvim.<pid>.<n>" leaves little room:
/Users/runner/work/neovim/neovim/build/Xtest_tmpdir_terminal/nvim.runner/aBcDeF/nvim.12345.0
Solution:
Point XDG_RUNTIME_DIR (`stdpath('run')`) at "/tmp/nvim_<pid>". 28 bytes:
/tmp/nvim_19916/nvim.19919.1
TODO?:
- `TEMP_DIR_NAMES` prefers `$TMPDIR` over `/tmp`, so on macOS
`stdpath('run')` defaults to the long `/var/folders/<xx>/<…>/T/` path
instead of the short `/tmp` alias.
Note:
- The 104-byte limit applies to the `bind()` arg, not its "realpath",
to, so `/tmp/…` symlinks can be used to workaround the limit.
67 lines
2.4 KiB
Lua
67 lines
2.4 KiB
Lua
local uv = vim.uv
|
|
|
|
---@return string
|
|
local function repo_root()
|
|
local source = debug.getinfo(1, 'S').source
|
|
assert(type(source) == 'string' and vim.startswith(source, '@'), 'failed to resolve runner path')
|
|
local script_path = assert(uv.fs_realpath(source:sub(2)), 'failed to resolve runner path')
|
|
return vim.fs.dirname(vim.fs.dirname(script_path))
|
|
end
|
|
|
|
---@param roots string[]
|
|
local function prepend_package_roots(roots)
|
|
local entries = {}
|
|
for _, root in ipairs(roots) do
|
|
entries[#entries + 1] = root .. '/?.lua'
|
|
entries[#entries + 1] = root .. '/?/init.lua'
|
|
end
|
|
|
|
package.path = table.concat(entries, ';') .. ';' .. package.path
|
|
end
|
|
|
|
_G.c_include_path = {}
|
|
while _G.arg[1] and vim.startswith(_G.arg[1], '-I') do
|
|
table.insert(_G.c_include_path, string.sub(table.remove(_G.arg, 1), 3))
|
|
end
|
|
-- TODO(bfredl): use also for cmake?
|
|
if _G.arg[1] and vim.startswith(_G.arg[1], '-P') then
|
|
local build_dir = string.sub(table.remove(_G.arg, 1), 3)
|
|
_G.nvim_build_dir = build_dir
|
|
|
|
-- TMPDIR: for testutil.tmpname() and Nvim tempname().
|
|
vim.env.TMPDIR = build_dir .. '/Xtest_tmpdir'
|
|
vim.fn.mkdir(vim.env.TMPDIR, 'p')
|
|
end
|
|
if _G.arg[1] and vim.startswith(_G.arg[1], '-X') then
|
|
local xdg_dir = string.sub(table.remove(_G.arg, 1), 3)
|
|
vim.env.NVIM_RPLUGIN_MANIFEST = xdg_dir .. '/Xtest_rplugin_manifest'
|
|
vim.env.XDG_CONFIG_HOME = xdg_dir .. '/config'
|
|
vim.env.XDG_DATA_HOME = xdg_dir .. '/share'
|
|
vim.env.XDG_STATE_HOME = xdg_dir .. '/state'
|
|
if vim.fn.has('win32') == 0 then
|
|
-- Socket dir (stdpath("run")), deliberately NOT in the build dir. sockaddr_un.sun_path is 104
|
|
-- bytes on macOS/BSD, "/…/build/tmp/nvim.<pid>.<n>" can exceed it. #38623
|
|
vim.env.XDG_RUNTIME_DIR = ('/tmp/nvim_%d'):format(vim.uv.os_getpid())
|
|
vim.fn.mkdir(vim.env.XDG_RUNTIME_DIR, 'p')
|
|
end
|
|
end
|
|
|
|
local root = repo_root()
|
|
prepend_package_roots({ root, root .. '/test', '.', './test' })
|
|
local entries = { root .. '/src/?.lua', root .. '/runtime/lua/?.lua' }
|
|
package.path = table.concat(entries, ';') .. ';' .. package.path
|
|
vim.env.VIMRUNTIME = root .. '/runtime'
|
|
|
|
-- The harness is not an Nvim instance under test. If its startup server stays
|
|
-- visible, serverlist({ peer = true }) can connect back to the runner and wait
|
|
-- forever for an RPC response.
|
|
if vim.v.servername ~= '' then
|
|
assert(vim.fn.serverstop(vim.v.servername) == 1)
|
|
end
|
|
|
|
local exit_code = require('test.harness').main(_G.arg)
|
|
io.stdout:flush()
|
|
io.stderr:flush()
|
|
|
|
os.exit(exit_code)
|