diff options
author | James McCoy <jamessan@jamessan.com> | 2022-03-06 15:43:00 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2022-03-06 15:44:54 -0500 |
commit | 0b5364559618958d24e9b9e56a5f70e11709e9a7 (patch) | |
tree | 9681ba11f594aadd250adca72dea5f105826c03f /test/functional/lua/vim_spec.lua | |
parent | ee1112f1b7355a7ebedf0465aa165c2938d83b37 (diff) | |
download | rneovim-0b5364559618958d24e9b9e56a5f70e11709e9a7.tar.gz rneovim-0b5364559618958d24e9b9e56a5f70e11709e9a7.tar.bz2 rneovim-0b5364559618958d24e9b9e56a5f70e11709e9a7.zip |
test(sr.ht): skip luamod-dev test which crashes nvim
Diffstat (limited to 'test/functional/lua/vim_spec.lua')
-rw-r--r-- | test/functional/lua/vim_spec.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua index e66e08d9d0..3dacb7a114 100644 --- a/test/functional/lua/vim_spec.lua +++ b/test/functional/lua/vim_spec.lua @@ -1,5 +1,6 @@ -- Test suite for testing interactions with API bindings local helpers = require('test.functional.helpers')(after_each) +local isCI = require('test.helpers').isCI local Screen = require('test.functional.ui.screen') local funcs = helpers.funcs @@ -2557,6 +2558,9 @@ describe('lua: builtin modules', function() it('does not work when disabled without runtime', function() + if isCI('sourcehut') then + pending('causes a core dump') + end clear{args={'--luamod-dev'}, env={VIMRUNTIME='fixtures/a'}} -- error checking could be better here. just check that --luamod-dev -- does anything at all by breaking with missing runtime.. |