Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: decrease timeout in test.py #32868

Closed
wants to merge 1 commit into from

Commits on Apr 15, 2020

  1. tools: decrease timeout in test.py

    This fixes the following crash on Windows for me. I don't know
    why this I only started to see this now, but anyway, the new timeout
    value is still longer than a week and a half.
    
        File "tools/test.py", line 1725, in <module>
            sys.exit(Main())
        File "tools/test.py", line 1701, in Main
            if RunTestCases(cases_to_run, options.progress, options.j, options.flaky_tests):
        File "tools/test.py", line 923, in RunTestCases
            return progress.Run(tasks)
        File "tools/test.py", line 145, in Run
            thread.join(timeout=10000000)
        File "C:\Users\anna\AppData\Local\Programs\Python\Python38-32\lib\threading.py", line 1015, in join
            self._wait_for_tstate_lock(timeout=max(timeout, 0))
        File "C:\Users\anna\AppData\Local\Programs\Python\Python38-32\lib\threading.py", line 1027, in _wait_for_tstate_lock
            elif lock.acquire(block, timeout):
        OverflowError: timeout value is too large
    addaleax committed Apr 15, 2020
    Configuration menu
    Copy the full SHA
    21a80d0 View commit details
    Browse the repository at this point in the history