From 9b50585e0225a80f9e383edacc7d73f1b5c8008b Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Mon, 16 May 2022 16:02:37 +0200 Subject: gh-90473: Skip tests that don't apply to Emscripten and WASI (GH-92846) --- Lib/test/test_genericpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_genericpath.py') diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py index 2741adc139b..489044f8090 100644 --- a/Lib/test/test_genericpath.py +++ b/Lib/test/test_genericpath.py @@ -484,7 +484,7 @@ class CommonTest(GenericTest): # invalid UTF-8 name. Windows allows creating a directory with an # arbitrary bytes name, but fails to enter this directory # (when the bytes name is used). - and sys.platform not in ('win32', 'darwin', 'emscripten')): + and sys.platform not in ('win32', 'darwin', 'emscripten', 'wasi')): name = os_helper.TESTFN_UNDECODABLE elif os_helper.TESTFN_NONASCII: name = os_helper.TESTFN_NONASCII -- cgit v1.2.3