Skip to content

Commit

Permalink
Merge pull request #25007 from mtrmac/zstd-chunked-with-tests
Browse files Browse the repository at this point in the history
Zstd:chunked podman-side tests
  • Loading branch information
openshift-merge-bot[bot] authored Feb 6, 2025
2 parents 2d42b13 + e5bcd65 commit 757c621
Show file tree
Hide file tree
Showing 5 changed files with 450 additions and 10 deletions.
5 changes: 4 additions & 1 deletion test/e2e/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ var (
_ = BeforeEach(func() {
tempdir, err = os.MkdirTemp(GlobalTmpDir, "subtest-")
Expect(err).ToNot(HaveOccurred())
podmanTest = PodmanTestCreate(tempdir)
podmanTempDir := filepath.Join(tempdir, "p")
err = os.Mkdir(podmanTempDir, 0o700)
Expect(err).ToNot(HaveOccurred())
podmanTest = PodmanTestCreate(podmanTempDir)
podmanTest.Setup()
// see GetSafeIPAddress() below
safeIPOctets[0] = uint8(GinkgoT().ParallelProcess()) + 128
Expand Down
Loading

0 comments on commit 757c621

Please sign in to comment.