From 0a86b4dab8a1b943c5f90fcff0c3c95902f30744 Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Tue, 16 Jul 2013 01:02:42 +0400 Subject: [PATCH] runtime: minor test cleanup R=golang-dev, khr, rsc CC=golang-dev https://golang.org/cl/11280043 --- src/pkg/runtime/proc_test.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/pkg/runtime/proc_test.go b/src/pkg/runtime/proc_test.go index 0e28d5a2d1..29e65da354 100644 --- a/src/pkg/runtime/proc_test.go +++ b/src/pkg/runtime/proc_test.go @@ -227,7 +227,7 @@ func TestPreemptSplitBig(t *testing.T) { stop := make(chan int) go big(stop) 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() } close(stop) @@ -237,7 +237,7 @@ func big(stop chan int) int { n := 0 for { // 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++ } @@ -286,9 +286,6 @@ func nonleaf(stop chan int) bool { } } -func poll() { -} - func TestSchedLocalQueue(t *testing.T) { runtime.TestSchedLocalQueue1() } -- 2.48.1