From e235a4b07e214195145e754fa042e4e765b7edd1 Mon Sep 17 00:00:00 2001 From: Jeff Grafton Date: Mon, 27 Apr 2015 12:11:58 -0700 Subject: [PATCH] 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. --- Godeps/Godeps.json | 4 ++-- .../github.com/onsi/ginkgo/ginkgo/testrunner/test_runner.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 1df8da5ab34..cb419a87d53 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -328,8 +328,8 @@ }, { "ImportPath": "github.com/onsi/ginkgo", - "Comment": "v1.1.0-42-gdbb5c6c", - "Rev": "dbb5c6caf33238b57facc1d975b1aaca6b90288c" + "Comment": "v1.1.0-44-gae043a2", + "Rev": "ae043a2b2a91d6441adedc96d2c01958a78ee516" }, { "ImportPath": "github.com/onsi/gomega", diff --git a/Godeps/_workspace/src/github.com/onsi/ginkgo/ginkgo/testrunner/test_runner.go b/Godeps/_workspace/src/github.com/onsi/ginkgo/ginkgo/testrunner/test_runner.go index e1a8098d20d..e525b2ac3a7 100644 --- a/Godeps/_workspace/src/github.com/onsi/ginkgo/ginkgo/testrunner/test_runner.go +++ b/Godeps/_workspace/src/github.com/onsi/ginkgo/ginkgo/testrunner/test_runner.go @@ -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 {