Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(335)

Delta Between Two Patch Sets: src/pkg/time/sleep_test.go

Issue 5713044: code review 5713044: time: skip a often-flaky test in short mode (Closed)
Left Patch Set: Created 13 years, 1 month ago
Right Patch Set: diff -r b1f0c3b7a935 https://go.googlecode.com/hg/ Created 13 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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
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 }
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b