mirror of
https://github.com/golang/go
synced 2024-11-07 07:36:14 -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>
18 lines
391 B
C
18 lines
391 B
C
// 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.
|
|
|
|
// +build ignore
|
|
|
|
#ifdef WIN32
|
|
#if defined(EXPORT_DLL)
|
|
# define VAR __declspec(dllexport)
|
|
#elif defined(IMPORT_DLL)
|
|
# define VAR __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
# define VAR extern
|
|
#endif
|
|
|
|
VAR const char *exported_var;
|