LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package time_test | 5 package time_test |
6 | 6 |
7 import ( | 7 import ( |
8 "errors" | 8 "errors" |
9 "fmt" | 9 "fmt" |
10 "runtime" | 10 "runtime" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 if testing.Short() { | 113 if testing.Short() { |
114 Delta = 10 * Millisecond | 114 Delta = 10 * Millisecond |
115 } | 115 } |
116 t0 := Now() | 116 t0 := Now() |
117 for i := 0; i < Count; i++ { | 117 for i := 0; i < Count; i++ { |
118 <-After(Delta) | 118 <-After(Delta) |
119 } | 119 } |
120 t1 := Now() | 120 t1 := Now() |
121 d := t1.Sub(t0) | 121 d := t1.Sub(t0) |
122 target := Delta * Count | 122 target := Delta * Count |
123 » if d < target*9/10 || d > target*30/10 { | 123 » if d < target*9/10 { |
124 » » t.Fatalf("%d ticks of %s took %s, expected %s", Count, Delta, d,
target) | 124 » » t.Fatalf("%d ticks of %s too fast: took %s, expected %s", Count,
Delta, d, target) |
| 125 » } |
| 126 » if !testing.Short() && d > target*30/10 { |
| 127 » » t.Fatalf("%d ticks of %s too slow: took %s, expected %s", Count,
Delta, d, target) |
125 } | 128 } |
126 } | 129 } |
127 | 130 |
128 func TestAfterStop(t *testing.T) { | 131 func TestAfterStop(t *testing.T) { |
129 AfterFunc(100*Millisecond, func() {}) | 132 AfterFunc(100*Millisecond, func() {}) |
130 t0 := NewTimer(50 * Millisecond) | 133 t0 := NewTimer(50 * Millisecond) |
131 c1 := make(chan bool, 1) | 134 c1 := make(chan bool, 1) |
132 t1 := AfterFunc(150*Millisecond, func() { c1 <- true }) | 135 t1 := AfterFunc(150*Millisecond, func() { c1 <- true }) |
133 c2 := After(200 * Millisecond) | 136 c2 := After(200 * Millisecond) |
134 if !t0.Stop() { | 137 if !t0.Stop() { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 go func(i int) { | 216 go func(i int) { |
214 timer := AfterFunc(2*Second, func() { | 217 timer := AfterFunc(2*Second, func() { |
215 t.Fatalf("timer %d was not stopped", i) | 218 t.Fatalf("timer %d was not stopped", i) |
216 }) | 219 }) |
217 Sleep(1 * Second) | 220 Sleep(1 * Second) |
218 timer.Stop() | 221 timer.Stop() |
219 }(i) | 222 }(i) |
220 } | 223 } |
221 Sleep(3 * Second) | 224 Sleep(3 * Second) |
222 } | 225 } |
LEFT | RIGHT |