From ce354a6afbf1813c9a5565a00f6937c1b6fd1e42 Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Fri, 18 Jan 2019 16:45:30 +0100 Subject: [pkg] remove vendoring of golang/x/* I think there's no need of vendoring this. The debian package builds fine without them - at least with the text-dev package in testing. --- .../x/tools/go/buildutil/util_windows_test.go | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 vendor/golang.org/x/tools/go/buildutil/util_windows_test.go (limited to 'vendor/golang.org/x/tools/go/buildutil/util_windows_test.go') diff --git a/vendor/golang.org/x/tools/go/buildutil/util_windows_test.go b/vendor/golang.org/x/tools/go/buildutil/util_windows_test.go deleted file mode 100644 index 86fe9c7..0000000 --- a/vendor/golang.org/x/tools/go/buildutil/util_windows_test.go +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright 2015 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. - -package buildutil_test - -import ( - "fmt" - "go/build" - "path/filepath" - "runtime" - "strings" - "testing" - - "golang.org/x/tools/go/buildutil" -) - -func testContainingPackageCaseFold(file, want string) error { - bp, err := buildutil.ContainingPackage(&build.Default, ".", file) - if err != nil { - return err - } - if got := bp.ImportPath; got != want { - return fmt.Errorf("ContainingPackage(%q) = %s, want %s", file, got, want) - } - return nil -} - -func TestContainingPackageCaseFold(t *testing.T) { - path := filepath.Join(runtime.GOROOT(), `src\fmt\print.go`) - err := testContainingPackageCaseFold(path, "fmt") - if err != nil { - t.Error(err) - } - vol := filepath.VolumeName(path) - if len(vol) != 2 || vol[1] != ':' { - t.Fatalf("GOROOT path has unexpected volume name: %v", vol) - } - rest := path[len(vol):] - err = testContainingPackageCaseFold(strings.ToUpper(vol)+rest, "fmt") - if err != nil { - t.Error(err) - } - err = testContainingPackageCaseFold(strings.ToLower(vol)+rest, "fmt") - if err != nil { - t.Error(err) - } -} -- cgit v1.2.3