summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_concurrent_futures/test_wait.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-116622: Test updates for Android (#117299)Malcolm Smith2024-04-051-1/+1
| | | | | | | - re-enable test_fcntl_64_bit on Linux aarch64, but disable it on all Android ABIs - use support.setswitchinterval in all relevant tests - skip test_fma_zero_result on Android x86_64 - accept EACCES when calling os.get_terminal_size on Android
* gh-109594: Fix concurrent.futures test_timeout() (#110018)Victor Stinner2023-09-281-8/+9
| | | | | | | | Fix test_timeout() of test_concurrent_futures.test_wait. Remove the future which may or may not complete depending if it takes longer than the timeout ot not. Keep the second future which does not complete before wait(). Make also the test faster: 0.5 second instead of 6 seconds, so remove @support.requires_resource('walltime') decorator.
* gh-108416: Mark slow but not CPU bound test methods with ↵Serhiy Storchaka2023-09-051-0/+3
| | | | requires_resource('walltime') (GH-108480)
* gh-108388: Convert test_concurrent_futures to package (#108401)Victor Stinner2023-08-241-0/+161
Convert test_concurrent_futures to a package of sub-tests.