Skip to content
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.

Commit

Permalink
Remove debugging commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
Miao Luo committed Oct 17, 2017
1 parent f11e70a commit 4ffd79f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/e2e/basic_vfile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,11 @@ func (s *BasicVFileTestSuite) TestVolumeLifecycle(c *C) {
for _, host := range s.config.DockerHosts {
out, err := dockercli.CreateVFileVolume(host, s.volName1)
c.Assert(err, IsNil, Commentf(out))
out1, err1 := dockercli.InspectVolume(host, s.volName1)
log.Println("InspectVolume return out[%s] for volume %s, error[%s]", out1, s.volName1, err1)

accessible := verification.CheckVolumeAvailability(host, s.volName1)
c.Assert(accessible, Equals, true, Commentf("Volume %s is not available", s.volName1))
out1, err1 = dockercli.InspectVolume(host, s.volName1)
log.Println("InspectVolume return out[%s] for volume %s, error[%s]", out1, s.volName1, err1)

out, err = dockercli.AttachVFileVolume(host, s.volName1, s.containerName)
out1, err1 = dockercli.InspectVolume(host, s.volName1)
log.Println("InspectVolume return out[%s] for volume %s, error[%s]", out1, s.volName1, err1)
c.Assert(err, IsNil, Commentf(out))

// Expect global refcount for this volume to be 1
Expand Down

0 comments on commit 4ffd79f

Please sign in to comment.