Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/api_container_restart_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ func init() {
// SetUpTest does common setup in the beginning of each test.
func (suite *APIContainerRestartSuite) SetUpTest(c *check.C) {
SkipIfFalse(c, environment.IsLinux)

PullImage(c, busyboxImage)
}

// TestAPIContainerRestart is to verify restarting container.
Expand Down
2 changes: 2 additions & 0 deletions test/api_version_parameter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ func init() {
// SetupTest does common setup in the beginning of each test.
func (suite *APIVersionSuite) SetUpTest(c *check.C) {
SkipIfFalse(c, environment.IsLinux)

PullImage(c, busyboxImage)
}

// TestNoVersionParamsInURL test api url not contains version info.
Expand Down
2 changes: 2 additions & 0 deletions test/cli_checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ func init() {
func (suite *PouchCheckpointSuite) SetUpTest(c *check.C) {
SkipIfFalse(c, environment.IsLinux)
SkipIfFalse(c, environment.IsCRIUExist)

PullImage(c, busyboxImage)
}

// TestCreate tests create checkpoint
Expand Down
2 changes: 2 additions & 0 deletions test/cli_container_commit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ func init() {
func (suite *PouchCommitSuite) SetUpTest(c *check.C) {
SkipIfFalse(c, environment.IsLinux)
SkipIfFalse(c, environment.IsCRIUExist)

PullImage(c, busyboxImage)
}

// TestCommitContainer tests commit a container successful.
Expand Down