patch 7.4.1253
Problem: Python test server not displaying second of two commands.
Solaris doesn't have "pkill --full".
Solution: Also echo the second command. Use "pkill -f".
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index d128990..de64188 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -59,7 +59,7 @@
if has('win32')
call system('taskkill /IM py.exe /T /F /FI "WINDOWTITLE eq test_channel"')
else
- call system("pkill --full test_channel.py")
+ call system("pkill -f test_channel.py")
endif
endfunc