convert non-low-level non-google pkg code

to whole-package compilation.

R=r
OCL=33070
CL=33101
This commit is contained in:
Russ Cox 2009-08-12 13:19:17 -07:00
parent 5b62b19d43
commit b04ac108fd
166 changed files with 305 additions and 2917 deletions

View file

@ -5,7 +5,6 @@
package net
import (
"net";
"os";
"regexp";
"testing";
@ -55,7 +54,7 @@ var dialErrorTests = []DialErrorTest {
func TestDialError(t *testing.T) {
for i, tt := range dialErrorTests {
c, e := net.Dial(tt.Net, tt.Laddr, tt.Raddr);
c, e := Dial(tt.Net, tt.Laddr, tt.Raddr);
if c != nil {
c.Close();
}