mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
gh-127146: Update test skips for Emscripten 4.0.1 (#129375)
Updates the Emscripten test skips to reflect recent changes in Emscripten capabilities.
This commit is contained in:
parent
1c3bb200da
commit
8e57877e3f
9 changed files with 6 additions and 13 deletions
|
@ -161,7 +161,7 @@ class GenericTest:
|
|||
self.assertIs(self.pathmodule.lexists(path=filename), True)
|
||||
|
||||
@unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()")
|
||||
@unittest.skipIf(is_emscripten, "Emscripten pipe fds have no stat")
|
||||
@unittest.skipIf(is_emscripten, "Fixed in next Emscripten release after 4.0.1")
|
||||
def test_exists_fd(self):
|
||||
r, w = os.pipe()
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue