Commit a55a5c8d authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

test: add temporary show_skips flag.

To find test files with legacy headers.

We can remove this flag once everything is converted.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5694060
parent 54eec3db
......@@ -32,6 +32,7 @@ var (
verbose = flag.Bool("v", false, "verbose. if set, parallelism is set to 1.")
numParallel = flag.Int("n", 8, "number of parallel tests to run")
summary = flag.Bool("summary", false, "show summary of results")
showSkips = flag.Bool("show_skips", false, "show skipped tests")
)
var (
......@@ -98,13 +99,10 @@ func main() {
for _, test := range tests {
<-test.donec
_, isSkip := test.err.(skipError)
errStr := "pass"
if isSkip {
resCount["skip"]++
if !*verbose {
continue
}
errStr = "skip"
}
errStr := "pass"
if test.err != nil {
errStr = test.err.Error()
if !isSkip {
......@@ -112,9 +110,12 @@ func main() {
}
}
resCount[errStr]++
if isSkip && !*verbose && !*showSkips {
continue
}
if !*verbose && test.err == nil {
continue
}
}
fmt.Printf("%-10s %-20s: %s\n", test.action, test.goFileName(), errStr)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment