1
0
mirror of https://github.com/golang/go synced 2024-11-18 16:04:44 -07:00

imports: skip test on plan9

Change-Id: I608a1ba47a049b7eb5f4ded481744d8b25e68800
Reviewed-on: https://go-review.googlesource.com/24988
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
This commit is contained in:
Brad Fitzpatrick 2016-07-17 16:24:21 +00:00
parent 681db090d9
commit 29481a356d

View File

@ -826,8 +826,9 @@ func TestFixImports(t *testing.T) {
// Test support for packages in GOPATH that are actually symlinks.
// Also test that a symlink loop does not block the process.
func TestImportSymlinks(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping test on Windows as there are no symlinks.")
switch runtime.GOOS {
case "windows", "plan9":
t.Skip("skipping test on %q as there are no symlinks", runtime.GOOS)
}
newGoPath, err := ioutil.TempDir("", "symlinktest")