1
0
mirror of https://github.com/golang/go synced 2024-11-22 01:44:40 -07:00

time: fix build

Allow less precise timing on build machines.

TBR=r
CC=golang-dev
https://golang.org/cl/3391043
This commit is contained in:
Russ Cox 2010-12-06 16:22:32 -05:00
parent 42cfe48ffc
commit 6eee9ed507

View File

@ -88,9 +88,9 @@ func TestAfterQueuing(t *testing.T) {
}
ns := r.t - t0
target := int64(slot * Delta)
slop := int64(Delta) / 10
slop := int64(Delta) / 4
if ns < target-slop || ns > target+slop {
t.Fatalf("after queue slot %d arrived at %g, expected %g", slot, float64(ns), float64(target))
t.Fatalf("after queue slot %d arrived at %g, expected [%g,%g]", slot, float64(ns), float64(target-slop), float64(target+slop))
}
}
}