all: use t.Skip{,f}

Replace various t.Log{,f} ; return checks with t.Skip{,f}.

R=golang-dev, n13m3y3r, bradfitz, adg, mikioh.mikioh
CC=golang-dev
https://golang.org/cl/7193044
This commit is contained in:
Dave Cheney 2013-01-24 17:32:10 +11:00
parent 2e51f78280
commit 6a9e956f19
31 changed files with 126 additions and 256 deletions

View file

@ -22,8 +22,7 @@ func perpetuumMobile() {
func TestStopTheWorldDeadlock(t *testing.T) {
if testing.Short() {
t.Logf("skipping during short test")
return
t.Skip("skipping during short test")
}
maxprocs := runtime.GOMAXPROCS(3)
compl := make(chan bool, 2)