Mercurial > vim
annotate src/testdir/test_channel_6.py @ 31269:b2a11acd2170 v9.0.0968
patch 9.0.0968: GUI mouse event test is a bit flaky
Commit: https://github.com/vim/vim/commit/c13e998d4a82e2c90efb4bbc1dd4ea2d6c424592
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 28 21:20:48 2022 +0000
patch 9.0.0968: GUI mouse event test is a bit flaky
Problem: GUI mouse event test is a bit flaky.
Solution: Mark the test case as flaky. Move test function failure checks to
a separate test function.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 28 Nov 2022 22:30:03 +0100 |
parents | e373843e2980 |
children |
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) |