Merge pull request #16336 from rhatdan/VENDOR

Do not report that /usr/share/containers/storage.conf has been edited.
This commit is contained in:
OpenShift Merge Robot
2022-10-31 09:42:08 -04:00
committed by GitHub
8 changed files with 23 additions and 16 deletions

View File

@@ -254,11 +254,6 @@ skip_if_remote "FIXME FIXME FIXME: find a way to clean up their podman calls" \
"bud with run should not leave mounts behind cleanup test" \
"bud with custom files in /run/ should persist cleanup test"
# Under podman-remote, the "Ignoring <stdin>:5:2: error: #error" message
# is never seen. (Not even as stdout/stderr on the server; Ed checked).
skip_if_remote "FIXME FIXME FIXME: 'Ignoring' warning is never seen" \
"bud with preprocessor error"
# END tests which are skipped due to actual podman or podman-remote bugs.
###############################################################################

View File

@@ -69,6 +69,7 @@ var _ = Describe("podman system reset", func() {
Expect(session).Should(Exit(0))
Expect(session.ErrorToString()).To(Not(ContainSubstring("Failed to add pause process")))
Expect(session.ErrorToString()).To(Not(ContainSubstring("/usr/share/containers/storage.conf")))
session = podmanTest.Podman([]string{"images", "-n"})
session.WaitWithDefaultTimeout()