summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--[-rwxr-xr-x]src/testdir/test_channel.py0
-rw-r--r--src/testdir/test_channel.vim7
-rw-r--r--src/version.c2
3 files changed, 6 insertions, 3 deletions
diff --git a/src/testdir/test_channel.py b/src/testdir/test_channel.py
index 236449483..236449483 100755..100644
--- a/src/testdir/test_channel.py
+++ b/src/testdir/test_channel.py
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index ee7a42244..9d4c77837 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -4,7 +4,8 @@ scriptencoding utf-8
" This requires the Python command to run the test server.
" This most likely only works on Unix and Windows console.
if has('unix')
- if !executable('python')
+ " We also need the pkill command to make sure the server can be stopped.
+ if !executable('python') || !executable('pkill')
finish
endif
elseif has('win32') && !has('gui_win32')
@@ -20,7 +21,7 @@ func s:start_server()
if has('win32')
silent !start cmd /c start "test_channel" py test_channel.py
else
- silent !./test_channel.py&
+ silent !python test_channel.py&
endif
endfunc
@@ -28,7 +29,7 @@ func s:kill_server()
if has('win32')
call system('taskkill /IM py.exe /T /F /FI "WINDOWTITLE eq test_channel"')
else
- call system("killall test_channel.py")
+ call system("pkill --full test_channel.py")
endif
endfunc
diff --git a/src/version.c b/src/version.c
index 9417f5e44..80abec4a7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1248,
+/**/
1247,
/**/
1246,