mirror of
https://github.com/golang/go
synced 2024-11-20 01:14:40 -07:00
cgi: make test code more readable
R=rsc CC=golang-dev https://golang.org/cl/5375089
This commit is contained in:
parent
4e65478cbd
commit
4bd15ae1b7
@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user