Merge pull request #17628 from jamessan/bsd-gdb

ci(bsd): install gdb to get backtraces from cores
This commit is contained in:
James McCoy
2022-03-06 16:09:39 -05:00
committed by GitHub
3 changed files with 6 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ packages:
- gettext
- python
- libffi
- gdb
sources:
- https://github.com/neovim/neovim

View File

@@ -12,6 +12,7 @@ packages:
- libtool
- ninja-1.10.2p0
- unzip-6.0p14
- gdb
sources:
- https://github.com/neovim/neovim

View File

@@ -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..