mirror of
https://github.com/golang/go
synced 2024-11-06 02:36:15 -07:00
dd4e7f9722
Add _test.go files in the individal directories to invoke 'go build' with appropriate arguments. Move the test driver out of cmd/dist so that it's easier to invoke the test separately (using 'go test .'). Updates #30228 Updates #28387 Change-Id: Ibc4a024a52c12a274058298b41cc90709f7f56c8 Reviewed-on: https://go-review.googlesource.com/c/163420 Reviewed-by: Ian Lance Taylor <iant@golang.org>
14 lines
246 B
Go
14 lines
246 B
Go
// Copyright 2011 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 ignore
|
|
|
|
package main
|
|
|
|
import "cgosotest"
|
|
|
|
func main() {
|
|
cgosotest.Test()
|
|
}
|