annotate src/testdir/test_channel_6.py @ 25240:a7f2a2079bce v8.2.3156

patch 8.2.3156: Vim9: term_getansicolors() test fails without +termguicolors Commit: https://github.com/vim/vim/commit/ee41052ccb65f8109f285fc43eed3e232de68375 Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Mon Jul 12 22:15:24 2021 +0200 patch 8.2.3156: Vim9: term_getansicolors() test fails without +termguicolors Problem: Vim9: term_getansicolors() test fails without +termguicolors. Solution: Add a check for the feature. (Dominique Pell?, closes https://github.com/vim/vim/issues/8555)
author Bram Moolenaar <Bram@vim.org>
date Mon, 12 Jul 2021 22:30:04 +0200
parents e373843e2980
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20003
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 #!/usr/bin/env python
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 #
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 # Server that will accept connections from a Vim channel.
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 # Used by test_channel.vim.
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 #
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 # This requires Python 2.6 or later.
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 from test_channel import main, ThreadedTCPServer
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 import socket
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 class ThreadedTCP6Server(ThreadedTCPServer):
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 address_family = socket.AF_INET6
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 if __name__ == "__main__":
e373843e2980 patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 main("::", 0, ThreadedTCP6Server)