From e8a27daaef3ed931d4e8a78a7c784c7656dfbbf1 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Thu, 5 Oct 2017 17:45:10 +1100 Subject: [PATCH] misc/cgo/testcshared: use correct install directory on windows Updates #11058 Change-Id: I2a8bf4403b680ab8bf06fff18291f3bf67261e27 Reviewed-on: https://go-review.googlesource.com/69090 Reviewed-by: Ian Lance Taylor Run-TryBot: Ian Lance Taylor --- misc/cgo/testcshared/cshared_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/cgo/testcshared/cshared_test.go b/misc/cgo/testcshared/cshared_test.go index 142ccf083d..b81ec3b4c1 100644 --- a/misc/cgo/testcshared/cshared_test.go +++ b/misc/cgo/testcshared/cshared_test.go @@ -42,15 +42,15 @@ func TestMain(m *testing.M) { // Directory where cgo headers and outputs will be installed. // The installation directory format varies depending on the platform. - installdir = path.Join("pkg", fmt.Sprintf("%s_%s_testcshared_shared", GOOS, GOARCH)) + installdir = path.Join("pkg", fmt.Sprintf("%s_%s_testcshared", GOOS, GOARCH)) switch GOOS { case "darwin": libSuffix = "dylib" - installdir = path.Join("pkg", fmt.Sprintf("%s_%s_testcshared", GOOS, GOARCH)) case "windows": libSuffix = "dll" default: libSuffix = "so" + installdir = path.Join("pkg", fmt.Sprintf("%s_%s_testcshared_shared", GOOS, GOARCH)) } androiddir = fmt.Sprintf("/data/local/tmp/testcshared-%d", os.Getpid()) -- 2.48.1