-
Notifications
You must be signed in to change notification settings - Fork 49
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
LongClassPathTests thread timeout fix. #517
Conversation
3d4ad94
to
bfbb762
Compare
Hi @jukzi |
boolean wasInterrupted = false; | ||
do { | ||
try { | ||
Job.getJobManager().join(ResourcesPlugin.FAMILY_AUTO_BUILD, null); |
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.
before join() a job in tests that job should be woke up so that not so long time outs are needed.
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.
Sure
please call org.eclipse.core.internal.jobs.JobManager.wakeUp(Object family) before joining |
the argument must not be null but the families you will join |
ok, then lets try this |
Okay 👍 |
What it does
Fix for #504
Increased timeout period
How to test
Author checklist