Index: src/pkg/net/http/cgi/host_test.go |
=================================================================== |
--- a/src/pkg/net/http/cgi/host_test.go |
+++ b/src/pkg/net/http/cgi/host_test.go |
@@ -19,6 +19,7 @@ |
"runtime" |
"strconv" |
"strings" |
+ "syscall" |
"testing" |
"time" |
) |
@@ -355,7 +356,7 @@ |
if err != nil { |
return false |
} |
- return p.Signal(os.UnixSignal(0)) == nil |
+ return p.Signal(syscall.Signal(0)) == nil |
} |
if !childRunning() { |