-
Notifications
You must be signed in to change notification settings - Fork 343
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
Avocado-instrumented default timeout removal #5728
Avocado-instrumented default timeout removal #5728
Conversation
1ba8b98
to
fe773aa
Compare
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.
Hi @richtja ,
This LGTM, but it'd be great to also check for the exit code (AVOCADO_JOB_INTERRUPTED = 0x0008
) in the selftests.
Sure thing, I will update that. Thanks for your review. |
This will remove unsystematic timeout inside avocado-instrumented runner. This timeout has been set to 24 hours and users haven't had a way how to change it. Because we solved problems with `task.timeout.running` in avocado-framework#5383 and `job-timeout` in avocado-framework#5295 this default timeout is not needed anymore. After this change, the users will have more power over timeouts and will be able to run instrumented tests longer than 24 hours. Reference: avocado-framework#5394 Signed-off-by: Jan Richter <[email protected]>
fe773aa
to
35a1e2d
Compare
Hi @clebergnu I added the exit code check. Please take a look. |
/packit copr-build |
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.
LGTM, thanks!
This will remove unsystematic timeout inside avocado-instrumented runner. This timeout has been set to 24 hours and users haven't had a way how to change it. Because we solved problems with
task.timeout.running
in #5383 andjob-timeout
in #5295 this default timeout is not needed anymore. After this change, the users will have more power over timeouts and will be able to run instrumented tests longer than 24 hours.Reference: #5394