-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
e2e: more ExitCleanly() on more test files #19959
e2e: more ExitCleanly() on more test files #19959
Conversation
Ongoing steps toward RUN-1907: replace Exit(0) with ExitCleanly() Commit 1 of 2: simple automated string-replace, plus fixes to includes. Signed-off-by: Ed Santiago <santiago@redhat.com>
Commit 2 of 2: manual fixes to get tests to pass. Mostly adding "-q", but in some cases reverting back to Exit(0) with progress-message checks. Plus, fix a typo in an error message Signed-off-by: Ed Santiago <santiago@redhat.com>
07b9e34
to
df011f4
Compare
Signed-off-by: Ed Santiago <santiago@redhat.com>
showrun make install.tools | ||
showrun dnf remove -y gvisor-tap-vsock | ||
showrun dnf install -y podman-docker* |
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.
@lsm5, @containers/podman-maintainers this was intended to fix the CI breakage, and it did, but I don't know how/if this will work after @lsm5's Obsoletes
fix, or on next CI-VM update, or when the moon wanes gibbous.
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: edsantiago, lsm5 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/hold cancel ...in the interests of fixing the CI emergency. Review feedback still appreciated. |
Trying a different approach. Instead of one-file-at-a-time, do a bunch of test files, but in two commits: one a simple string substitution of
Expect...Exit(0)
to...ExitCleanly()
, and the second being manual fixes. The second commit is the important one to review.