-
Notifications
You must be signed in to change notification settings - Fork 238
test/system: Check if the container was created by 'create' #1715
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/system: Check if the container was created by 'create' #1715
Conversation
80646e8
to
d40dd88
Compare
Checking the exit code, and the standard error and output streams of the 'create' command don't say anything about whether the container was actually created. Therefore, 'podman ps --all' is used to verify that. Other tests already do this, so this change makes these tests consistent with the rest. containers#1715
Build succeeded. ✔️ unit-test SUCCESS in 2m 16s |
d40dd88
to
6cc22af
Compare
Build succeeded. ✔️ unit-test SUCCESS in 2m 20s |
6cc22af
to
9fbdac0
Compare
9fbdac0
to
8ffc9eb
Compare
Checking the exit code, and the standard error and output streams of the 'create' command don't say anything about whether the container was actually created. Therefore, 'podman ps --all' is used to verify that. Other tests already do this, so this change makes these tests consistent with the rest. Fallout from the following: * b27795a * 983beb1 * ecd1ced containers#1715
Build succeeded. ✔️ unit-test SUCCESS in 2m 08s |
Build succeeded. ✔️ unit-test SUCCESS in 2m 19s |
Checking the exit code, and the standard error and output streams of the
create
command don't say anything about whether the container wasactually created. Therefore,
podman ps --all
is used to verify that.Other tests already do this, so this change makes these tests consistent
with the rest.