Commit 0a86b4da authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

runtime: minor test cleanup

R=golang-dev, khr, rsc
CC=golang-dev
https://golang.org/cl/11280043
parent 3d236aed
...@@ -227,7 +227,7 @@ func TestPreemptSplitBig(t *testing.T) { ...@@ -227,7 +227,7 @@ func TestPreemptSplitBig(t *testing.T) {
stop := make(chan int) stop := make(chan int)
go big(stop) go big(stop)
for i := 0; i < 3; i++ { for i := 0; i < 3; i++ {
time.Sleep(1 * time.Microsecond) // let big start running time.Sleep(10 * time.Microsecond) // let big start running
runtime.GC() runtime.GC()
} }
close(stop) close(stop)
...@@ -237,7 +237,7 @@ func big(stop chan int) int { ...@@ -237,7 +237,7 @@ func big(stop chan int) int {
n := 0 n := 0
for { for {
// delay so that gc is sure to have asked for a preemption // delay so that gc is sure to have asked for a preemption
for i := int64(0); i < 1e9; i++ { for i := 0; i < 1e9; i++ {
n++ n++
} }
...@@ -286,9 +286,6 @@ func nonleaf(stop chan int) bool { ...@@ -286,9 +286,6 @@ func nonleaf(stop chan int) bool {
} }
} }
func poll() {
}
func TestSchedLocalQueue(t *testing.T) { func TestSchedLocalQueue(t *testing.T) {
runtime.TestSchedLocalQueue1() runtime.TestSchedLocalQueue1()
} }
......
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