-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Test combinations of task behavior #3967
Conversation
The loom test did not work with the threaded scheduler because panics could leak from one thread to another due to its use of generators to switch between threads. However, the loom test was useful as it caught memory leaks. Changing it to a miri test retains the leak test as miri will also catch leaks. I also run it as a normal test. I only run the threaded scheduler in the normal test and not in miri. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catches.
runtime: add large test and fix leak it found (tokio-rs#3967)
No description provided.