mirror of https://github.com/containers/podman.git
Merge ff26d9e0b8
into dfd205fa24
This commit is contained in:
commit
a93209d38d
|
@ -31,7 +31,7 @@ env:
|
|||
DEBIAN_NAME: "debian-13"
|
||||
|
||||
# Image identifiers
|
||||
IMAGE_SUFFIX: "c20250422t130822z-f42f41d13"
|
||||
IMAGE_SUFFIX: "c20250618t143630z-f42f41d13"
|
||||
|
||||
# EC2 images
|
||||
FEDORA_AMI: "fedora-aws-${IMAGE_SUFFIX}"
|
||||
|
|
|
@ -332,6 +332,7 @@ var _ = Describe("Podman checkpoint", func() {
|
|||
})
|
||||
|
||||
It("podman checkpoint container with established tcp connections", func() {
|
||||
Skip("FIXME: #26289 - Rawhide only issue, skip for now")
|
||||
localRunString := getRunString([]string{REDIS_IMAGE})
|
||||
session := podmanTest.Podman(localRunString)
|
||||
session.WaitWithDefaultTimeout()
|
||||
|
@ -1061,6 +1062,7 @@ var _ = Describe("Podman checkpoint", func() {
|
|||
})
|
||||
|
||||
It("podman checkpoint and restore container with different port mappings", func() {
|
||||
Skip("FIXME: #26289 - Rawhide only issue, skip for now")
|
||||
randomPort, err := utils.GetRandomPort()
|
||||
Expect(err).ShouldNot(HaveOccurred())
|
||||
localRunString := getRunString([]string{"-p", fmt.Sprintf("%d:6379", randomPort), "--rm", REDIS_IMAGE})
|
||||
|
@ -1364,6 +1366,7 @@ var _ = Describe("Podman checkpoint", func() {
|
|||
})
|
||||
|
||||
It("podman checkpoint and restore containers with --print-stats", func() {
|
||||
Skip("FIXME: #26289 - Rawhide only issue, skip for now")
|
||||
session1 := podmanTest.Podman(getRunString([]string{REDIS_IMAGE}))
|
||||
session1.WaitWithDefaultTimeout()
|
||||
Expect(session1).Should(ExitCleanly())
|
||||
|
|
|
@ -132,6 +132,7 @@ function setup() {
|
|||
|
||||
# bats test_tags=ci:parallel
|
||||
@test "podman checkpoint --export, with volumes" {
|
||||
skip "FIXME: #26289 - Rawhide only issue, skip for now"
|
||||
skip_if_remote "Test uses --root/--runroot, which are N/A over remote"
|
||||
|
||||
local p_opts="$(podman_isolation_opts ${PODMAN_TMPDIR}) --events-backend file"
|
||||
|
|
Loading…
Reference in New Issue