Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: skip always fail test #1195

Merged
merged 1 commit into from
Apr 24, 2018
Merged
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
7 changes: 6 additions & 1 deletion test/cli_rich_container_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package main

import (
"encoding/json"
"errors"
"fmt"
"runtime"
Expand All @@ -10,7 +11,6 @@ import (
"github.com/alibaba/pouch/test/command"
"github.com/alibaba/pouch/test/environment"

"encoding/json"
"github.com/go-check/check"
"github.com/gotestyourself/gotestyourself/icmd"
)
Expand Down Expand Up @@ -148,6 +148,10 @@ func (suite *PouchRichContainerSuite) TestRichContainerDumbInitWrongArgs(c *chec
}

// TestRichContainerSbinInitWorks check the initd works.
/*
Comment the test (Ace-Tang).
related issue : https://github.com/alibaba/pouch/issues/960
related pr: https://github.com/alibaba/pouch/pull/1128
func (suite *PouchRichContainerSuite) TestRichContainerInitdWorks(c *check.C) {
pc, _, _, _ := runtime.Caller(0)
tmpname := strings.Split(runtime.FuncForPC(pc).Name(), ".")
Expand Down Expand Up @@ -190,6 +194,7 @@ func (suite *PouchRichContainerSuite) TestRichContainerInitdWorks(c *check.C) {

command.PouchRun("rm", "-f", funcname)
}
*/

// TestRichContainerSystemdWorks check the systemd works.
func (suite *PouchRichContainerSuite) TestRichContainerSystemdWorks(c *check.C) {
Expand Down