1
0
mirror of https://github.com/golang/go synced 2024-10-03 03:11:21 -06:00

cgi: make test code more readable

R=rsc
CC=golang-dev
https://golang.org/cl/5375089
This commit is contained in:
Brad Fitzpatrick 2011-11-14 13:12:08 -08:00
parent 4e65478cbd
commit 4bd15ae1b7

View File

@ -363,14 +363,13 @@ func TestCopyError(t *testing.T) {
}
conn.Close()
if tries := 0; childRunning() {
for tries < 15 && childRunning() {
time.Sleep(50e6 * int64(tries))
tries++
}
if childRunning() {
t.Fatalf("post-conn.Close, expected child to be gone")
}
tries := 0
for tries < 15 && childRunning() {
time.Sleep(50e6 * int64(tries))
tries++
}
if childRunning() {
t.Fatalf("post-conn.Close, expected child to be gone")
}
}