diff options
author | James McCoy <jamessan@jamessan.com> | 2021-04-09 09:48:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 09:48:35 -0400 |
commit | e3d0fb0d3cdc09a716e925627ca0da47224e1390 (patch) | |
tree | e97e81b57b57d9a845f897333e61d1c440bfe9eb /test/helpers.lua | |
parent | 8a1a256b44f7fe9f0d878d4d28d7f41f8157c4ea (diff) | |
parent | 6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26 (diff) | |
download | rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.tar.gz rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.tar.bz2 rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.zip |
Merge pull request #14321 from jamessan/ci-fixes
Some small cleanups/diagnostic improvements
Diffstat (limited to 'test/helpers.lua')
-rw-r--r-- | test/helpers.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/helpers.lua b/test/helpers.lua index 8dbd82cb8c..12d9f19187 100644 --- a/test/helpers.lua +++ b/test/helpers.lua @@ -365,7 +365,11 @@ function module.check_cores(app, force) db_cmd = lldb_db_cmd else initial_path = '.' - re = '/core[^/]*$' + if 'freebsd' == module.uname() then + re = '/nvim.core$' + else + re = '/core[^/]*$' + end exc_re = { '^/%.deps$', '^/%'..deps_prefix()..'$', local_tmpdir, '^/%node_modules$' } db_cmd = gdb_db_cmd random_skip = true |