1
0
mirror of https://github.com/moby/moby.git synced 2025-12-07 19:42:23 +03:00

Build and test Docker on IBM Power and Z using gccgo. Enable CI on Power and Z.

Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
This commit is contained in:
Srini Brahmaroutu
2015-02-24 18:33:18 +00:00
parent 13963957eb
commit b1cc78b8f5
12 changed files with 204 additions and 14 deletions

View File

@@ -171,7 +171,7 @@ func (s *DockerCmdSuite) TestDockerCmdWithTimeout(c *check.C) {
{
"doesnotexists",
[]string{},
100 * time.Millisecond,
200 * time.Millisecond,
`Command doesnotexists not found.`,
1,
fmt.Errorf(`"" failed with errors: exit status 1 : "Command doesnotexists not found."`),
@@ -179,7 +179,7 @@ func (s *DockerCmdSuite) TestDockerCmdWithTimeout(c *check.C) {
{
dockerBinary,
[]string{"an", "error"},
100 * time.Millisecond,
200 * time.Millisecond,
`an error has occurred`,
1,
fmt.Errorf(`"an error" failed with errors: exit status 1 : "an error has occurred"`),
@@ -195,7 +195,7 @@ func (s *DockerCmdSuite) TestDockerCmdWithTimeout(c *check.C) {
{
dockerBinary,
[]string{"run", "-ti", "ubuntu", "echo", "hello"},
100 * time.Millisecond,
200 * time.Millisecond,
"hello",
0,
nil,
@@ -282,7 +282,7 @@ func (s *DockerCmdSuite) TestDockerCmdInDirWithTimeout(c *check.C) {
{
"doesnotexists",
[]string{},
100 * time.Millisecond,
200 * time.Millisecond,
`Command doesnotexists not found.`,
1,
fmt.Errorf(`"dir:%s" failed with errors: exit status 1 : "Command doesnotexists not found."`, tempFolder),
@@ -290,7 +290,7 @@ func (s *DockerCmdSuite) TestDockerCmdInDirWithTimeout(c *check.C) {
{
dockerBinary,
[]string{"an", "error"},
100 * time.Millisecond,
200 * time.Millisecond,
`an error has occurred`,
1,
fmt.Errorf(`"dir:%s an error" failed with errors: exit status 1 : "an error has occurred"`, tempFolder),
@@ -306,7 +306,7 @@ func (s *DockerCmdSuite) TestDockerCmdInDirWithTimeout(c *check.C) {
{
dockerBinary,
[]string{"run", "-ti", "ubuntu", "echo", "hello"},
100 * time.Millisecond,
200 * time.Millisecond,
"hello",
0,
nil,