go.sys: fix imports to cgc/p/go.sys, add build tags
Approach but probably not achieve a green build.
LGTM=adg
R=golang-codereviews, adg
CC=golang-codereviews
https://golang.org/cl/126120043
diff --git a/windows/syscall_test.go b/windows/syscall_test.go
index 09e16bf..e54a03c 100644
--- a/windows/syscall_test.go
+++ b/windows/syscall_test.go
@@ -2,11 +2,14 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
+// +build windows
+
package windows_test
import (
"testing"
- "windows"
+
+ "code.google.com/p/go.sys/windows"
)
func testSetGetenv(t *testing.T, key, value string) {