mirror of
https://github.com/golang/go
synced 2024-11-05 21:46:13 -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>
37 lines
769 B
Go
37 lines
769 B
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"
|
|
"testing"
|
|
)
|
|
|
|
func TestDownloadGoVersion(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skipf("Skipping download in short mode")
|
|
}
|
|
|
|
tmpd, err := ioutil.TempDir("", "go")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer os.RemoveAll(tmpd)
|
|
|
|
if err := downloadGoVersion("go1.8.1", "linux", "amd64", filepath.Join(tmpd, "go")); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Ensure the VERSION file exists.
|
|
vf := filepath.Join(tmpd, "go", "VERSION")
|
|
if _, err := os.Stat(vf); os.IsNotExist(err) {
|
|
t.Fatalf("file %s does not exist and should", vf)
|
|
}
|
|
}
|