Skip to content

Commit

Permalink
more instrumenting for unlink-ENOTEMPTY
Browse files Browse the repository at this point in the history
Signed-off-by: Ed Santiago <santiago@redhat.com>
  • Loading branch information
edsantiago committed Aug 3, 2023
1 parent 4efdbb6 commit baacbb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -867,8 +867,8 @@ RUN ls /dev/test1`, ALPINE)
Expect(session).Should(Exit(0))

// 2023-06-21 ESM FIXME
ls := SystemExec("ls", []string{"-lR", tempdir + "/events"})
GinkgoWriter.Printf("Running: ls -lR %s/events\n%s\n", tempdir, ls.OutputToString())
ls := SystemExec("bash", []string{"-c", fmt.Sprintf("find %s/events -type f | while read f;do echo;ls -l $f;cat $f;done", tempdir)})
ls.WaitWithDefaultTimeout()

session = podmanTest.Podman([]string{"system", "reset", "-f"})
session.WaitWithDefaultTimeout()
Expand Down

0 comments on commit baacbb1

Please sign in to comment.