summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_faulthandler.py
Commit message (Expand)AuthorAgeFilesLines
* gh-117658: Fix check_dump_traceback_threads in free-threaded build (#117659)Sam Gross2024-04-091-1/+3
* gh-116303: Skip test module dependent tests if test modules are unavailable (...Erlend E. Aasland2024-04-031-0/+1
* Add support.MS_WINDOWS constant (#110446)Victor Stinner2023-10-061-3/+1
* gh-110367: Fix regrtest test_worker_output_on_failure() on ASAN build (#110387)Victor Stinner2023-10-051-5/+1
* gh-110367: Enhance regrtest -jN --verbose3 (#110368)Victor Stinner2023-10-051-1/+1
* gh-108416: Mark slow but not CPU bound test methods with requires_resource('w...Serhiy Storchaka2023-09-051-0/+1
* Fix test_faulthandler for sanitizers (#108245)Victor Stinner2023-08-221-6/+13
* gh-104469: Convert _testcapi/exceptions to use AC (gh-104502)Dong-hee Na2023-05-211-1/+1
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-051-0/+3
* Refactor sanitiser skip tests into test.support (GH-30889)Pablo Galindo Salgado2022-01-251-15/+5
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-0/+3
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-261-0/+1
* bpo-44466: Faulthandler now detects the GC (GH-26823)Victor Stinner2021-06-211-14/+53
* fix enum and backslash warnings (GH-25861)Ethan Furman2021-05-041-1/+1
* bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)Victor Stinner2021-01-251-1/+1
* bpo-42955: Add sys.modules_names (GH-24238)Victor Stinner2021-01-251-3/+5
* bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)Victor Stinner2021-01-191-5/+5
* bpo-42923: Dump extension modules on fatal error (GH-24207)Victor Stinner2021-01-181-0/+19
* bpo-42923: Add Py_FatalError() test in test_capi (GH-24240)Victor Stinner2021-01-181-16/+14
* bpo-40275: Use new test.support helper submodules in tests (GH-21743)Hai Shi2020-08-061-1/+2
* bpo-39882: Py_FatalError() logs the function name (GH-18819)Victor Stinner2020-03-061-1/+6
* bpo-38991: Remove test.support.strip_python_stderr() (GH-17490)Victor Stinner2019-12-081-2/+1
* bpo-38203: faulthandler.dump_traceback_later() is always available (GH-16249)Victor Stinner2019-09-181-5/+2
* bpo-38070: Py_FatalError() logs runtime state (GH-16246)Victor Stinner2019-09-171-6/+12
* bpo-37933: Fix faulthandler.cancel_dump_traceback_later() (GH-15440)Thomas A Caswell2019-08-291-0/+11
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-1/+0
* bpo-35568: add 'raise_signal' function (GH-11335)Vladimir Matveev2019-01-081-6/+4
* Fix typos in test_faulthandler skipIfs for ubsan. (GH-11386)Gregory P. Smith2018-12-311-4/+4
* Cleanup test_faulthandler sanitizer skip logic. (GH-11381)Gregory P. Smith2018-12-311-7/+14
* bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375)Gregory P. Smith2018-12-311-0/+9
* bpo-12458: Fix line numbers for multiline expressions. (GH-8774)Serhiy Storchaka2018-09-171-1/+1
* Revert "bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)" (GH-7919)Victor Stinner2018-06-261-7/+8
* bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)Victor Stinner2018-06-221-8/+7
* bpo-32101: Fix tests for PYTHONDEVMODE=1 (#4821)Victor Stinner2017-12-121-8/+6
* bpo-32138: Skip on Android test_faulthandler tests that raise SIGSEGV (GH-4604)xdegaye2017-11-291-13/+14
* bpo-31701: faulthandler: ignore MSC and COM Windows exception (#3929)Victor Stinner2017-10-091-0/+16
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-8/+2
* bpo-30557: Fix test_faulthandler (#1969)Victor Stinner2017-06-061-2/+4
* bpo-30557: faulthandler now correctly filters and displays exception codes on...Steve Dower2017-06-051-0/+26
* bpo-30125: Fix faulthandler.disable() on Windows (#1240)Victor Stinner2017-04-211-0/+12
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #26934: Fix test_faulthandler on Android where raise() exits with 0,Xavier de Gaye2016-11-131-1/+1
* Fix test_faulthandler on Android where raise() exits with 0Xavier de Gaye2016-11-131-1/+13
* Issue 27948: Allow backslashes in the literal string portion of f-strings, bu...Eric V. Smith2016-09-101-2/+2
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-4/+4
* Issue 27921: Remove backslash from another f-string. I'll revert this change ...Eric V. Smith2016-09-031-2/+2
* Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-1/+1
|\
| * Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* | faulthandler: only log fatal exceptionsVictor Stinner2016-03-231-1/+1
* | faulthandler: add Windows exception handlerVictor Stinner2016-03-231-13/+49