aboutsummaryrefslogtreecommitdiff
path: root/test/unit/mbyte_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-08-05 10:17:37 +0200
committerGitHub <noreply@github.com>2019-08-05 10:17:37 +0200
commit51440204e7973672f906db8e53035cfd228ce444 (patch)
tree6c69695a8822cb42c4d5f1ff1cf23b440d9455ff /test/unit/mbyte_spec.lua
parent6871445dfe80939df81517870f0b29a2b40dd9d9 (diff)
parentd4a0b6c4e1d78f19bf5879b113c5252d5a4f2e5c (diff)
downloadrneovim-51440204e7973672f906db8e53035cfd228ce444.tar.gz
rneovim-51440204e7973672f906db8e53035cfd228ce444.tar.bz2
rneovim-51440204e7973672f906db8e53035cfd228ce444.zip
Merge #10695 from justinmk/test-fixes
test: various fixes
Diffstat (limited to 'test/unit/mbyte_spec.lua')
-rw-r--r--test/unit/mbyte_spec.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/unit/mbyte_spec.lua b/test/unit/mbyte_spec.lua
index 3e65537270..1ff1bed9fe 100644
--- a/test/unit/mbyte_spec.lua
+++ b/test/unit/mbyte_spec.lua
@@ -8,6 +8,9 @@ local mbyte = helpers.cimport("./src/nvim/mbyte.h")
local charset = helpers.cimport('./src/nvim/charset.h')
describe('mbyte', function()
+ if helpers.isCI('quickbuild') then
+ pending("crashes on quickbuild", function() end)
+ end
-- Array for composing characters
local intp = ffi.typeof('int[?]')