We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Suppose we have only one test to run, which will stuck forever, for whatever reason.
Running the gtest-parallel by assigning --timeout=x will be also stuck forever, instead of finished in time and reporting that test to be timed out.
--timeout=x
The problem occurs because we wait the process to be finished without a time out:
gtest-parallel/gtest_parallel.py
Line 92 in f4d65b5
A solution might be https://stackoverflow.com/a/10012262/4597218
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Suppose we have only one test to run, which will stuck forever, for whatever reason.
Running the gtest-parallel by assigning
--timeout=x
will be also stuck forever, instead of finished in time and reporting that test to be timed out.The problem occurs because we wait the process to be finished without a time out:
gtest-parallel/gtest_parallel.py
Line 92 in f4d65b5
A solution might be https://stackoverflow.com/a/10012262/4597218
The text was updated successfully, but these errors were encountered: