aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_makeencoding.py
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-03-07 04:13:04 +0100
committerGitHub <noreply@github.com>2023-03-07 11:13:04 +0800
commitaf23d173883f47fd02a9a380c719e4428370b484 (patch)
treed5da436c1539905528254225dd8f817f1577fb84 /src/nvim/testdir/test_makeencoding.py
parentbf4eada2c83f5402fc56370fd22af11029a4a3aa (diff)
downloadrneovim-af23d173883f47fd02a9a380c719e4428370b484.tar.gz
rneovim-af23d173883f47fd02a9a380c719e4428370b484.tar.bz2
rneovim-af23d173883f47fd02a9a380c719e4428370b484.zip
test: move oldtests to test directory (#22536)
The new oldtest directory is in test/old/testdir. The reason for this is that many tests have hardcoded the parent directory name to be 'testdir'.
Diffstat (limited to 'src/nvim/testdir/test_makeencoding.py')
-rw-r--r--src/nvim/testdir/test_makeencoding.py69
1 files changed, 0 insertions, 69 deletions
diff --git a/src/nvim/testdir/test_makeencoding.py b/src/nvim/testdir/test_makeencoding.py
deleted file mode 100644
index f6dc0f8d1c..0000000000
--- a/src/nvim/testdir/test_makeencoding.py
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-# Test program for :make, :grep and :cgetfile.
-
-from __future__ import print_function, unicode_literals
-import locale
-import io
-import sys
-
-
-def set_output_encoding(enc=None):
- """Set the encoding of stdout and stderr
-
- arguments:
- enc -- Encoding name.
- If omitted, locale.getpreferredencoding() is used.
- """
- if enc is None:
- enc = locale.getpreferredencoding()
-
- def get_text_writer(fo, **kwargs):
- kw = dict(kwargs)
- kw.setdefault('errors', 'backslashreplace') # use \uXXXX style
- kw.setdefault('closefd', False)
-
- if sys.version_info[0] < 3:
- # Work around for Python 2.x
- # New line conversion isn't needed here. Done in somewhere else.
- writer = io.open(fo.fileno(), mode='w', newline='', **kw)
- write = writer.write # save the original write() function
- enc = locale.getpreferredencoding()
-
- def convwrite(s):
- if isinstance(s, bytes):
- write(s.decode(enc)) # convert to unistr
- else:
- write(s)
- try:
- writer.flush() # needed on Windows
- except IOError:
- pass
- writer.write = convwrite
- else:
- writer = io.open(fo.fileno(), mode='w', **kw)
- return writer
-
- sys.stdout = get_text_writer(sys.stdout, encoding=enc)
- sys.stderr = get_text_writer(sys.stderr, encoding=enc)
-
-
-def main():
- enc = 'utf-8'
- if len(sys.argv) > 1:
- enc = sys.argv[1]
- set_output_encoding(enc)
-
- message_tbl = {
- 'utf-8': 'ÀÈÌÒÙ こんにちは 你好',
- 'latin1': 'ÀÈÌÒÙ',
- 'cp932': 'こんにちは',
- 'cp936': '你好',
- }
-
- print('Xfoobar.c(10) : %s (%s)' % (message_tbl[enc], enc))
-
-
-if __name__ == "__main__":
- main()