From: Caleb Spare Date: Tue, 17 Nov 2015 04:14:50 +0000 (-0800) Subject: test: remove dead branch from run.go X-Git-Tag: go1.6beta1~323 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9216d3e34476d2ae521d8e99ed9076a822fd0624;p=gostls13.git test: remove dead branch from run.go It relates to an obsolete notion of 'skipped-but-okay' tests. Fixes #12394 Change-Id: Ib7e6444dc8565e1390bd42d65d30fac136593f78 Reviewed-on: https://go-review.googlesource.com/17000 Run-TryBot: Caleb Spare Reviewed-by: Josh Bleecher Snyder TryBot-Result: Gobot Gobot Reviewed-by: Dmitri Shuralyov --- diff --git a/test/run.go b/test/run.go index 6e1cde9390..22cec9b992 100644 --- a/test/run.go +++ b/test/run.go @@ -132,9 +132,6 @@ func main() { failed = true } resCount[status]++ - if status == "skip" && !*verbose && !*showSkips { - continue - } dt := fmt.Sprintf("%.3fs", test.dt.Seconds()) if status == "FAIL" { fmt.Printf("# go run run.go -- %s\n%s\nFAIL\t%s\t%s\n",