mirror of
https://github.com/golang/go
synced 2024-11-05 19:46:11 -07:00
36c7af3342
getgo doesn't work on plan9. Skip it entirely. And skip the massive slow godoc start-up test. Not worth it. Change-Id: If062b7c4c8c7c5084e607ed22085657054c10ba9 Reviewed-on: https://go-review.googlesource.com/80737 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
// Copyright 2017 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !plan9
|
|
|
|
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestAppendPath(t *testing.T) {
|
|
tmpd, err := ioutil.TempDir("", "go")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer os.RemoveAll(tmpd)
|
|
|
|
if err := os.Setenv("HOME", tmpd); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
GOPATH := os.Getenv("GOPATH")
|
|
if err := appendToPATH(filepath.Join(GOPATH, "bin")); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
shellConfig, err := shellConfigFile()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
b, err := ioutil.ReadFile(shellConfig)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
expected := "export PATH=" + pathVar + envSeparator + filepath.Join(GOPATH, "bin")
|
|
if strings.TrimSpace(string(b)) != expected {
|
|
t.Fatalf("expected: %q, got %q", expected, strings.TrimSpace(string(b)))
|
|
}
|
|
|
|
// Check that appendToPATH is idempotent.
|
|
if err := appendToPATH(filepath.Join(GOPATH, "bin")); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
b, err = ioutil.ReadFile(shellConfig)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if strings.TrimSpace(string(b)) != expected {
|
|
t.Fatalf("expected: %q, got %q", expected, strings.TrimSpace(string(b)))
|
|
}
|
|
}
|