-
Notifications
You must be signed in to change notification settings - Fork 115
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 timeout_to_kill #15162
test timeout_to_kill #15162
Conversation
|
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.
Codewisely looks good, packit/PRT pending.
PRT Result
|
|
PRT Result
|
|
PRT Result
|
|
PRT Result
|
|
PRT Result
|
|
PRT Result
|
trigger: test-robottelo |
e8e8528
to
f2a7430
Compare
trigger: test-robottelo |
PRT Result
|
eh, prt won't pass due to the current registration issue, must await sn 62 |
trigger: test-robottelo |
PRT Result
|
trigger: test-robottelo |
PRT Result
|
hm, awaiting rubygem-smart_proxy_remote_execution_ssh-0.10.6 to land at stream, having the proper fix to the original issue, stay tuned |
trigger: test-robottelo |
PRT Result
|
746db75
to
8f24b38
Compare
trigger: test-robottelo |
PRT Result
|
8f24b38
to
7c6480e
Compare
trigger: test-robottelo |
PRT Result
|
:Verifies: SAT-25243 | ||
""" | ||
client = rex_contenthost | ||
command = r'for i in \`seq 160\`; do sleep \$i; done' |
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.
(non-blocking for the test functionality)
With sleep $i
, the sleeps will be incremental, i.e. sleep 1; sleep 2; sleep 3, etc.
For sleeping for 160 seconds in 1-second ticks, running for run in {1..160}; do sleep 1; done
will do the trick.
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. My comment above is non-blocking.
7c6480e
to
8725599
Compare
trigger: test-robottelo |
PRT Result
|
(cherry picked from commit 1628759)
(cherry picked from commit 1628759)
Problem Statement
timeout to kill setting should cancel the rex job if it takes too long
Solution
adding test
Related Issues