summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_posix.py
Commit message (Expand)AuthorAgeFilesLines
* gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Windows (GH...Serhiy Storchaka2023-11-101-7/+7
* gh-111912: Run test_posix on Windows (GH-111913)Serhiy Storchaka2023-11-101-3/+7
* gh-109649: Add os.process_cpu_count() function (#109907)Victor Stinner2023-09-301-0/+1
* gh-103724: Add test case if no arg as provided in os.register_at_fork (gh-103...Ankit Kumar Pandey2023-04-231-0/+3
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-031-6/+0
* gh-95023: Added os.setns and os.unshare functions (#95046)Noam Cohen2022-10-201-0/+47
* gh-98393: os module reject bytes-like, only accept bytes (#98394)Victor Stinner2022-10-181-6/+3
* gh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 13 SDK (GH-97944)Ned Deily2022-10-061-0/+22
* gh-84461: Fix Emscripten umask and permission issues (GH-94002)Christian Heimes2022-06-191-0/+3
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)Christian Heimes2022-06-061-1/+3
* gh-90473: Skip POSIX tests that don't apply to WASI (GH-93536)Christian Heimes2022-06-061-2/+9
* bpo-45046: Support context managers in unittest (GH-28045)Serhiy Storchaka2022-05-081-9/+3
* bpo-47205: Skip error check of sched_get/setaffinity on FreeBSD (GH-32285)Christian Heimes2022-04-031-2/+6
* bpo-40280: Skip more tests/features that don't apply to Emscripten (GH-31791)Christian Heimes2022-03-101-3/+11
* bpo-40280: Block more non-working syscalls in Emscripten (GH-31757)Christian Heimes2022-03-081-3/+7
* bpo-46933: Make pwd module optional (GH-31700)Christian Heimes2022-03-071-1/+6
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-051-4/+5
* bpo-46426: Improve tests for the dir_fd argument (GH-30668)Serhiy Storchaka2022-01-211-222/+195
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-12/+4
* bpo-43568: Drop support for MACOSX_DEPLOYMENT_TARGET < 10.3 (GH-25827)Ned Deily2021-05-031-1/+1
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25190)Inada Naoki2021-04-061-9/+9
* bpo-42504: Ensure that get_config_var('MACOSX_DEPLOYMENT_TARGET') is a string...Ronald Oussoren2021-02-011-1/+1
* bpo-31904: Skip some tests of changing owner in _test_all_chown_common() on V...pxinwr2020-12-151-2/+11
* bpo-31904: Disable os.popen and popen test cases on VxWorks (GH-21687)pxinwr2020-12-151-0/+1
* bpo-41443: Add more attribute checking in test_posix (GH-21688)pxinwr2020-12-081-3/+7
* bpo-42504: fix for MACOSX_DEPLOYMENT_TARGET=11 (GH-23556)FX Coudert2020-12-031-1/+1
* bpo-31904: Fix fifo test cases for VxWorks (GH-20254)pxinwr2020-12-011-4/+9
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-081-0/+228
* bpo-40275: Use new test.support helper submodules in tests (GH-21451)Hai Shi2020-08-031-169/+189
* bpo-40094: Add test.support.wait_process() (GH-19254)Victor Stinner2020-03-311-26/+25
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-241-1/+0
* bpo-38692: Skip test_posix.test_pidfd_open() on EPERM (GH-17290)Victor Stinner2019-11-211-0/+2
* bpo-38692: Add os.pidfd_open. (GH-17063)Benjamin Peterson2019-11-061-0/+9
* bpo-38493: Add os.CLD_KILLED and os.CLD_STOPPED. (GH-16821)Dong-hee Na2019-10-211-0/+10
* closes bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH...Brandt Bucher2019-06-271-0/+1
* bpo-35537: Rewrite setsid test for os.posix_spawn (GH-11721)Victor Stinner2019-06-141-16/+28
* Fix test_posix if RWF_HIPRI is defined but not preadv2. (GH-13980)Benjamin Peterson2019-06-111-0/+2
* bpo-36814: ensure os.posix_spawn() handles None (GH-13144)Anthony Shaw2019-05-101-0/+9
* Skip test_preadv_flags if RWF_HIPRI is not supported by the system (GH-12762)Pablo Galindo2019-04-131-0/+8
* Clean up code which checked presence of os.{stat,lstat,chmod} (#11643)Anthony Sottile2019-02-251-5/+1
* bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718)Victor Stinner2019-02-011-0/+2
* bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH...Joannah Nanjekye2019-02-011-0/+16
* bpo-35794: Catch PermissionError in test_no_such_executable (GH-11635)Pablo Galindo2019-01-211-1/+3
* bpo-35674: Add os.posix_spawnp() (GH-11554)Joannah Nanjekye2019-01-161-71/+119
* bpo-35568: add 'raise_signal' function (GH-11335)Vladimir Matveev2019-01-081-4/+4
* bpo-34685: Skip posix_spawn scheduler tests on BSD (GH-9316)Pablo Galindo2018-09-141-6/+10
* closes bpo-34650: Check if sched_getscheduler returns ENOSYS before declaring...Benjamin Peterson2018-09-121-3/+15
* bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725)Serhiy Storchaka2018-09-081-29/+28
* bpo-20104: Add flag capabilities to posix_spawn (GH-6693)Pablo Galindo2018-09-071-0/+143
* Fix TestPosixSpawn.test_close_file() (GH-8992)Victor Stinner2018-08-291-30/+34