mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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:
parent
2e51f78280
commit
6a9e956f19
31 changed files with 126 additions and 256 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue