aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-03-05 03:53:42 +0300
committerZyX <kp-pav@yandex.ru>2017-03-29 10:08:45 +0300
commit52e226ff74f49a02f884247b61d1865fa14e810d (patch)
tree1be4de227987d3784aed85da7dadcbbc909875ce
parentf830243ff7b78b9bb41e72fd602b99c2893b5437 (diff)
downloadrneovim-52e226ff74f49a02f884247b61d1865fa14e810d.tar.gz
rneovim-52e226ff74f49a02f884247b61d1865fa14e810d.tar.bz2
rneovim-52e226ff74f49a02f884247b61d1865fa14e810d.zip
unittests: Disable tv_list_join test on Mac OS only
-rw-r--r--test/unit/eval/typval_spec.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/eval/typval_spec.lua b/test/unit/eval/typval_spec.lua
index 937869a7bc..2653706e5b 100644
--- a/test/unit/eval/typval_spec.lua
+++ b/test/unit/eval/typval_spec.lua
@@ -34,6 +34,7 @@ local null_string = eval_helpers.null_string
local tbl2callback = eval_helpers.tbl2callback
local dict_watchers = eval_helpers.dict_watchers
+local uname = global_helpers.uname
local concat_tables = global_helpers.concat_tables
local lib = cimport('./src/nvim/eval/typval.h', './src/nvim/memory.h',
@@ -1132,7 +1133,7 @@ describe('typval.c', function()
local recursive_li = recursive_l.lv_first
lib.tv_list_item_remove(recursive_l, recursive_li)
lib.tv_list_free(l)
- end)
+ end, uname() == 'Darwin')
end)
describe('equal()', function()
itp('compares empty and NULL lists correctly', function()