From 861a7604d4a5334c60c413c26c97f1d91e647335 Mon Sep 17 00:00:00 2001 From: erw7 Date: Mon, 5 Aug 2019 23:15:22 +0900 Subject: Change test execution conditions Since neovim needs iconv to process cp932, it changes the test execution condition. --- src/nvim/testdir/test_increment_dbcs.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/nvim/testdir/test_increment_dbcs.vim b/src/nvim/testdir/test_increment_dbcs.vim index 474a16feeb..e5d5ccffb3 100644 --- a/src/nvim/testdir/test_increment_dbcs.vim +++ b/src/nvim/testdir/test_increment_dbcs.vim @@ -1,5 +1,7 @@ " Tests for using Ctrl-A/Ctrl-X using DBCS. -if !has('multi_byte') +" neovim needs an iconv to handle cp932. Please do not remove the following +" conditions. +if !has('iconv') finish endif scriptencoding cp932 -- cgit