https://github.com/python/cpython/commit/95d2a81ba8eec6d3f5ddad9d54c7988e178d5961 commit: 95d2a81ba8eec6d3f5ddad9d54c7988e178d5961 branch: main author: Serhiy Storchaka <storch...@gmail.com> committer: serhiy-storchaka <storch...@gmail.com> date: 2025-05-04T21:48:06+03:00 summary:
gh-81793: Skip tests for os.link() to symlink on Android (GH-133388) files: M Lib/test/test_posix.py diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index bb18e49c9e3f82..b6a07f214fad49 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -1522,6 +1522,7 @@ def test_pidfd_open(self): os.close(os.pidfd_open(os.getpid(), 0)) @unittest.skipUnless(hasattr(os, "link"), "test needs os.link()") + @support.skip_android_selinux('hard links to symbolic links') def test_link_follow_symlinks(self): default_follow = sys.platform.startswith( ('darwin', 'freebsd', 'netbsd', 'openbsd', 'dragonfly', 'sunos5')) _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com