summaryrefslogtreecommitdiffstats
path: root/Lib/test/support
Commit message (Expand)AuthorAgeFilesLines
...
* gh-90473: WASI requires proper open(2) flags (GH-93529)Christian Heimes2022-06-061-1/+4
* gh-90473: wasmtime does not support absolute symlinks (GH-93490)Christian Heimes2022-06-051-2/+6
* gh-84461: Skip dtrace/network tests that are enabled by -u all (GH-93473)Christian Heimes2022-06-031-0/+2
* gh-69443: Add test.support.Py_DEBUG constant (#93226)Victor Stinner2022-05-251-0/+6
* gh-90473: WASI: skip gethostname tests (GH-93092)Christian Heimes2022-05-231-0/+3
* gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)Christian Heimes2022-05-191-0/+5
* gh-90473: Skip tests that don't apply to Emscripten and WASI (GH-92846)Christian Heimes2022-05-161-1/+1
* gh-92820: Skip test_cppext if _ctypes is missing (#92844)Victor Stinner2022-05-161-0/+17
* gh-90473: Increase stack size, disable obmalloc on WASI (GH-92732)Christian Heimes2022-05-131-1/+1
* gh-92514: Remove unused test.support.BasicTestRunner (#92515)Jelle Zijlstra2022-05-121-7/+1
* gh-84461: Add sys._emscripten_info, improve docs and build (gh-91781)Christian Heimes2022-04-231-6/+1
* gh-91156: Use `locale.getencoding()` instead of getpreferredencoding (GH-91732)Inada Naoki2022-04-221-1/+1
* gh-91217: deprecate nntplib (GH-91543)Brett Cannon2022-04-151-2/+2
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-071-1/+14
* bpo-47061: deprecate the `aifc` module (GH-32134)Brett Cannon2022-04-051-0/+8
* bpo-46126: Restore 'descriptions' when running tests internally. (GH-32128)Jason R. Coombs2022-04-031-5/+1
* bpo-40280: Detect if WASM platform supports threading (GH-32243)Christian Heimes2022-04-021-0/+27
* Replace with_traceback() with exception chaining and reraising (GH-32074)Oleg Iarygin2022-03-301-1/+1
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-0/+16
* bpo-47037: Don't test for strftime('%4Y') on Windows (GH-31945)Christian Heimes2022-03-181-4/+7
* bpo-46587: Skip tests if strftime does not support glibc extension (GH-31873)Christian Heimes2022-03-151-20/+25
* bpo-46198: rename duplicate tests and remove unused code (GH-30297)Nikita Sobolev2022-03-101-3/+3
* bpo-40280: Skip more tests/features that don't apply to Emscripten (GH-31791)Christian Heimes2022-03-101-1/+1
* bpo-40280: Block more non-working syscalls in Emscripten (GH-31757)Christian Heimes2022-03-081-2/+2
* bpo-46678: Fix Invalid cross device link in Lib/test/support/import_helper.py...Jason Wilkes2022-02-081-1/+2
* bpo-46659: test.support avoids locale.getdefaultlocale() (GH-31167)Victor Stinner2022-02-061-1/+1
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-052-1/+3
* bpo-45629: Improve test.support.skip_if_buildbot (GH-31094)Gregory P. Smith2022-02-031-4/+6
* Add skips to crashing tests under sanitizers instead of manually skipping the...Pablo Galindo Salgado2022-01-251-6/+11
* Refactor sanitiser skip tests into test.support (GH-30889)Pablo Galindo Salgado2022-01-251-1/+30
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-252-4/+21
* bpo-46126: Disable 'descriptions' when running tests internally. (GH-30194)Jason R. Coombs2022-01-221-1/+5
* bpo-46426: Improve tests for the dir_fd argument (GH-30668)Serhiy Storchaka2022-01-211-0/+11
* bpo-40280: Add requires_fork test helper (GH-30622)Christian Heimes2022-01-161-2/+12
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-073-1704/+0
* bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)Victor Stinner2021-12-021-1/+1
* bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner2021-11-153-0/+1704
* bpo-45668: Fix PGO tests without test extensions (GH-29315)Christian Heimes2021-11-011-2/+8
* bpo-45629: Add a test for the "freeze" tool. (gh-29222)Eric Snow2021-10-281-0/+11
* bpo-45410: regrtest -W leaves stdout/err FD unchanged (GH-28915)Victor Stinner2021-10-131-3/+5
* bpo-45410: Enhance libregrtest -W/--verbose3 option (GH-28908)Victor Stinner2021-10-121-1/+3
* bpo-45410: Add test.support.flush_std_streams() (GH-28885)Victor Stinner2021-10-111-0/+9
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-061-1/+1
* bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-28654)Serhiy Storchaka2021-09-301-43/+24
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-211-2/+2
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-8/+2
* bpo-45020: Freeze os, site, and codecs. (gh-28398)Eric Snow2021-09-171-9/+9
* bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow2021-09-142-3/+35
* bpo-5846: Do not use obsolete unittest functions. (GH-28303)Serhiy Storchaka2021-09-132-3/+4
* bpo-45042: Now test classes decorated with `requires_hashdigest` are not skip...Nikita Sobolev2021-09-041-3/+16