Skip to content

Commit 4553438

Browse files
committed
test_unicode_file.py skip tests until posix NFI based support is in
1 parent 4754da1 commit 4553438

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

graalpython/lib-python/3/test/test_unicode_file.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import unicodedata
66

77
import unittest
8-
from test.support import (run_unittest, rmtree, change_cwd,
8+
from test.support import (run_unittest, rmtree, change_cwd, impl_detail,
99
TESTFN_ENCODING, TESTFN_UNICODE, TESTFN_UNENCODABLE, create_empty_file)
1010

1111
if not os.path.supports_unicode_filenames:
@@ -117,11 +117,13 @@ def _test_single(self, filename):
117117

118118
# The 'test' functions are unittest entry points, and simply call our
119119
# _test functions with each of the filename combinations we wish to test
120+
@impl_detail("[GR-27024] [GR-23324] posix NFI support", graalvm=False)
120121
def test_single_files(self):
121122
self._test_single(TESTFN_UNICODE)
122123
if TESTFN_UNENCODABLE is not None:
123124
self._test_single(TESTFN_UNENCODABLE)
124125

126+
@impl_detail("[GR-27024] [GR-23324] posix NFI support", graalvm=False)
125127
def test_directories(self):
126128
# For all 'equivalent' combinations:
127129
# Make dir with encoded, chdir with unicode, checkdir with encoded

0 commit comments

Comments
 (0)