From dea3d764c242e706a7dfd8c3a64b6f65dc027896 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Mon, 10 Nov 2014 08:56:17 +1100 Subject: [PATCH] go.sys: use golang.org/x/... import paths LGTM=bradfitz, rsc R=rsc, bradfitz CC=golang-codereviews https://golang.org/cl/171050043 --- plan9/syscall_test.go | 2 +- unix/creds_test.go | 2 +- unix/mksyscall_solaris.pl | 2 +- unix/mmap_unix_test.go | 2 +- unix/syscall_bsd_test.go | 2 +- unix/syscall_test.go | 2 +- unix/syscall_unix_test.go | 2 +- windows/syscall_test.go | 2 +- windows/syscall_windows_test.go | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/plan9/syscall_test.go b/plan9/syscall_test.go index 9b8c7dae..8f829bad 100644 --- a/plan9/syscall_test.go +++ b/plan9/syscall_test.go @@ -9,7 +9,7 @@ package plan9_test import ( "testing" - "code.google.com/p/go.sys/plan9" + "golang.org/x/sys/plan9" ) func testSetGetenv(t *testing.T, key, value string) { diff --git a/unix/creds_test.go b/unix/creds_test.go index 03485369..30694a0f 100644 --- a/unix/creds_test.go +++ b/unix/creds_test.go @@ -13,7 +13,7 @@ import ( "syscall" "testing" - "code.google.com/p/go.sys/unix" + "golang.org/x/sys/unix" ) // TestSCMCredentials tests the sending and receiving of credentials diff --git a/unix/mksyscall_solaris.pl b/unix/mksyscall_solaris.pl index 68f3f6ab..e8ec976f 100755 --- a/unix/mksyscall_solaris.pl +++ b/unix/mksyscall_solaris.pl @@ -265,7 +265,7 @@ package $package import "unsafe" EOF -print "import \"code.google.com/p/go.sys/unix\"\n" if $package ne "unix"; +print "import \"golang.org/x/sys/unix\"\n" if $package ne "unix"; print <