summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/config/config.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-09-30 13:43:54 -0700
committerGitHub <noreply@github.com>2019-09-30 13:43:54 -0700
commit92a489bcdfcb16a8fa74f08b539696be2f6bd0ab (patch)
tree8cf8f44607274f542864dcb9cf3fe0cdbc723aa1 /vendor/github.com/onsi/ginkgo/config/config.go
parentc3b9e21c41ddced2d568c8f514d111be09d8e48e (diff)
parent427b71f147afd9d624aeb3b7fc6a26b55567d1b7 (diff)
downloadpodman-92a489bcdfcb16a8fa74f08b539696be2f6bd0ab.tar.gz
podman-92a489bcdfcb16a8fa74f08b539696be2f6bd0ab.tar.bz2
podman-92a489bcdfcb16a8fa74f08b539696be2f6bd0ab.zip
Merge pull request #4149 from containers/dependabot/go_modules/github.com/onsi/ginkgo-1.10.1
Bump github.com/onsi/ginkgo from 1.8.0 to 1.10.1
Diffstat (limited to 'vendor/github.com/onsi/ginkgo/config/config.go')
-rw-r--r--vendor/github.com/onsi/ginkgo/config/config.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/vendor/github.com/onsi/ginkgo/config/config.go b/vendor/github.com/onsi/ginkgo/config/config.go
index dab2a2470..ac55a5ad2 100644
--- a/vendor/github.com/onsi/ginkgo/config/config.go
+++ b/vendor/github.com/onsi/ginkgo/config/config.go
@@ -20,7 +20,7 @@ import (
"fmt"
)
-const VERSION = "1.8.0"
+const VERSION = "1.10.1"
type GinkgoConfigType struct {
RandomSeed int64
@@ -52,13 +52,14 @@ type DefaultReporterConfigType struct {
Succinct bool
Verbose bool
FullTrace bool
+ ReportPassed bool
}
var DefaultReporterConfig = DefaultReporterConfigType{}
func processPrefix(prefix string) string {
if prefix != "" {
- prefix = prefix + "."
+ prefix += "."
}
return prefix
}
@@ -98,6 +99,7 @@ func Flags(flagSet *flag.FlagSet, prefix string, includeParallelFlags bool) {
flagSet.BoolVar(&(DefaultReporterConfig.Verbose), prefix+"v", false, "If set, default reporter print out all specs as they begin.")
flagSet.BoolVar(&(DefaultReporterConfig.Succinct), prefix+"succinct", false, "If set, default reporter prints out a very succinct report")
flagSet.BoolVar(&(DefaultReporterConfig.FullTrace), prefix+"trace", false, "If set, default reporter prints out the full stack trace when a failure occurs")
+ flagSet.BoolVar(&(DefaultReporterConfig.ReportPassed), prefix+"reportPassed", false, "If set, default reporter prints out captured output of passed tests.")
}
func BuildFlagArgs(prefix string, ginkgo GinkgoConfigType, reporter DefaultReporterConfigType) []string {
@@ -196,5 +198,9 @@ func BuildFlagArgs(prefix string, ginkgo GinkgoConfigType, reporter DefaultRepor
result = append(result, fmt.Sprintf("--%strace", prefix))
}
+ if reporter.ReportPassed {
+ result = append(result, fmt.Sprintf("--%sreportPassed", prefix))
+ }
+
return result
}