aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/proc_test.go
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2020-04-06 09:07:03 -0700
committerJosh Bleecher Snyder <josharian@gmail.com>2020-04-08 16:40:46 +0000
commit97711bfd60575b2f51e212b0b5181729597e9091 (patch)
treee6cdf498ab367d542bba6e91839a67480ce466ab /src/runtime/proc_test.go
parent4874835232322713f23d2f10c083ae6fa893868b (diff)
downloadgo-97711bfd60575b2f51e212b0b5181729597e9091.tar.gz
go-97711bfd60575b2f51e212b0b5181729597e9091.zip
runtime: skip TestPingPongHog in race mode
TestPingPongHog tests properties of the scheduler. But the race detector intentionally does randomized scheduling, so the test is not applicable. Fixes #38266 Change-Id: Ib06aa317b2776cb1faa641c4e038e2599cf70b2d Reviewed-on: https://go-review.googlesource.com/c/go/+/227344 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime/proc_test.go')
-rw-r--r--src/runtime/proc_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runtime/proc_test.go b/src/runtime/proc_test.go
index acee7a1819..81bcb98aeb 100644
--- a/src/runtime/proc_test.go
+++ b/src/runtime/proc_test.go
@@ -6,6 +6,7 @@ package runtime_test
import (
"fmt"
+ "internal/race"
"math"
"net"
"runtime"
@@ -422,6 +423,11 @@ func TestPingPongHog(t *testing.T) {
if testing.Short() {
t.Skip("skipping in -short mode")
}
+ if race.Enabled {
+ // The race detector randomizes the scheduler,
+ // which causes this test to fail (#38266).
+ t.Skip("skipping in -race mode")
+ }
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
done := make(chan bool)