1
0
mirror of https://github.com/golang/go synced 2024-10-01 08:18:32 -06:00

go/importer: in TestImportStdLib, skip 2 packages that use vendoring

(See issue #13756)

Change-Id: Icda14c34f3460e941ae092f147432c795465a077
Reviewed-on: https://go-review.googlesource.com/18195
Reviewed-by: Alan Donovan <adonovan@google.com>
This commit is contained in:
Alan Donovan 2015-12-28 16:26:54 -05:00
parent 9b7a39c6be
commit b14dd1a5b7

View File

@ -119,6 +119,11 @@ func TestImportStdLib(t *testing.T) {
if testing.Short() && time.Since(start) >= 750*time.Millisecond {
return
}
if lib == "cmd/internal/objfile" || lib == "net/http" {
// gcimporter doesn't support vendored imports.
// TODO(gri): fix.
continue
}
pkg, err := pkgForPath(lib)
switch err := err.(type) {