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
Consider the following example:
val executorService = Executors.newFixedThreadPool(2) executorService.asCoroutineDispatcher().use { dispatcher -> val job = launch(dispatcher) { counter++ } job.join()
Currently, if a lincheck test fails in such a case, it would also output in the trace all the implementation details of the coroutines.
We need to improve on this, and do not show these details by default to the user.
Partially depends on #501 and #506
The text was updated successfully, but these errors were encountered:
Please also see #303
Sorry, something went wrong.
eupp
No branches or pull requests
Consider the following example:
Currently, if a lincheck test fails in such a case, it would also output in the trace all the implementation details of the coroutines.
We need to improve on this, and do not show these details by default to the user.
Partially depends on #501 and #506
The text was updated successfully, but these errors were encountered: