view src/testdir/test_channel_6.py @ 31043:61db3a2a0e78 v9.0.0856

patch 9.0.0856: MS-Windows: executable not found when running test Commit: https://github.com/vim/vim/commit/d55bfcaa9b140c50cddf56a2c614f05f2f6f2533 Author: Christopher Plewright <chris@createng.com> Date: Thu Nov 10 18:21:30 2022 +0000 patch 9.0.0856: MS-Windows: executable not found when running test Problem: MS-Windows: executable not found when running individual test. Solution: Also look for vimd.exe. (Christopher Plewright, closes https://github.com/vim/vim/issues/11525)
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Nov 2022 19:30:04 +0100
parents e373843e2980
children
line wrap: on
line source

#!/usr/bin/env python
#
# Server that will accept connections from a Vim channel.
# Used by test_channel.vim.
#
# This requires Python 2.6 or later.

from test_channel import main, ThreadedTCPServer
import socket

class ThreadedTCP6Server(ThreadedTCPServer):
    address_family = socket.AF_INET6

if __name__ == "__main__":
    main("::", 0, ThreadedTCP6Server)