aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2022-03-06 16:09:39 -0500
committerGitHub <noreply@github.com>2022-03-06 16:09:39 -0500
commit54000170205b684cfb91bd178fba5d3486fb3313 (patch)
tree6bfcf567ea8adc769cb49df4c4a489197d72f50b
parent92349b1db0039aac3a43089d0aade2437164505c (diff)
parent0b5364559618958d24e9b9e56a5f70e11709e9a7 (diff)
downloadrneovim-54000170205b684cfb91bd178fba5d3486fb3313.tar.gz
rneovim-54000170205b684cfb91bd178fba5d3486fb3313.tar.bz2
rneovim-54000170205b684cfb91bd178fba5d3486fb3313.zip
Merge pull request #17628 from jamessan/bsd-gdb
ci(bsd): install gdb to get backtraces from cores
-rw-r--r--.builds/freebsd.yml1
-rw-r--r--.builds/openbsd.yml1
-rw-r--r--test/functional/lua/vim_spec.lua4
3 files changed, 6 insertions, 0 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
index 8596eb2a7f..508dcacd3c 100644
--- a/.builds/freebsd.yml
+++ b/.builds/freebsd.yml
@@ -12,6 +12,7 @@ packages:
- gettext
- python
- libffi
+- gdb
sources:
- https://github.com/neovim/neovim
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml
index 422fa366b6..2f9ccdc1be 100644
--- a/.builds/openbsd.yml
+++ b/.builds/openbsd.yml
@@ -12,6 +12,7 @@ packages:
- libtool
- ninja-1.10.2p0
- unzip-6.0p14
+- gdb
sources:
- https://github.com/neovim/neovim
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..