Update Ginkgo to latest HEAD release with one-character fix

The Ginkgo native test runner needed a small fix to work with pflag;
this fix is included in this update.
This commit is contained in:
Jeff Grafton
2015-04-27 12:11:58 -07:00
parent a689be8f74
commit e235a4b07e
2 changed files with 3 additions and 3 deletions

View File

@@ -291,7 +291,7 @@ func (t *TestRunner) runParallelGinkgoSuite() RunResult {
}
func (t *TestRunner) cmd(ginkgoArgs []string, stream io.Writer, node int) *exec.Cmd {
args := []string{"-test.timeout=24h"}
args := []string{"--test.timeout=24h"}
if t.cover {
coverprofile := "--test.coverprofile=" + t.Suite.PackageName + ".coverprofile"
if t.numCPU > 1 {