aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/watch_spec.lua
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2024-07-06 11:44:19 +0200
committerGitHub <noreply@github.com>2024-07-06 11:44:19 +0200
commit55e4301036bb938474fc9768c41e28df867d9286 (patch)
treed83f3c3d1bccb1ad97197f322fe5c689c4aef8fd /test/functional/lua/watch_spec.lua
parent91e5dcae3d47e7eaf25537471288c27055fdddbe (diff)
downloadrneovim-55e4301036bb938474fc9768c41e28df867d9286.tar.gz
rneovim-55e4301036bb938474fc9768c41e28df867d9286.tar.bz2
rneovim-55e4301036bb938474fc9768c41e28df867d9286.zip
feat(lsp): drop fswatch, use inotifywait (#29374)
This patch replaces fswatch with inotifywait from inotify-toools: https://github.com/inotify-tools/inotify-tools fswatch takes ~1min to set up recursively for the Samba source code directory. inotifywait needs less than a second to do the same thing. https://github.com/emcrisostomo/fswatch/issues/321 Also it fswatch seems to be unmaintained in the meantime. Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'test/functional/lua/watch_spec.lua')
-rw-r--r--test/functional/lua/watch_spec.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/functional/lua/watch_spec.lua b/test/functional/lua/watch_spec.lua
index bd8faadf5b..3d2dda716e 100644
--- a/test/functional/lua/watch_spec.lua
+++ b/test/functional/lua/watch_spec.lua
@@ -23,10 +23,13 @@ describe('vim._watch', function()
local function run(watchfunc)
it('detects file changes (watchfunc=' .. watchfunc .. '())', function()
- if watchfunc == 'fswatch' then
+ if watchfunc == 'inotify' then
skip(is_os('win'), 'not supported on windows')
skip(is_os('mac'), 'flaky test on mac')
- skip(not is_ci() and n.fn.executable('fswatch') == 0, 'fswatch not installed and not on CI')
+ skip(
+ not is_ci() and n.fn.executable('inotifywait') == 0,
+ 'inotify-tools not installed and not on CI'
+ )
end
if watchfunc == 'watch' then
@@ -123,5 +126,5 @@ describe('vim._watch', function()
run('watch')
run('watchdirs')
- run('fswatch')
+ run('inotify')
end)