From a38a917aee626a9b9d5ce2b93964f586bf759ea0 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 8 Oct 2019 19:19:13 +0000 Subject: all: remove the nacl port (part 1) You were a useful port and you've served your purpose. Thanks for all the play. A subsequent CL will remove amd64p32 (including assembly files and toolchain bits) and remaining bits. The amd64p32 removal will be separated into its own CL in case we want to support the Linux x32 ABI in the future and want our old amd64p32 support as a starting point. Updates #30439 Change-Id: Ia3a0c7d49804adc87bf52a4dea7e3d3007f2b1cd Reviewed-on: https://go-review.googlesource.com/c/go/+/199499 Run-TryBot: Brad Fitzpatrick Reviewed-by: Ian Lance Taylor TryBot-Result: Gobot Gobot --- src/os/executable_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/executable_test.go') diff --git a/src/os/executable_test.go b/src/os/executable_test.go index d513c8760e..f25ee0c95a 100644 --- a/src/os/executable_test.go +++ b/src/os/executable_test.go @@ -17,7 +17,7 @@ import ( const executable_EnvVar = "OSTEST_OUTPUT_EXECPATH" func TestExecutable(t *testing.T) { - testenv.MustHaveExec(t) // will also exclude nacl, which doesn't support Executable anyway + testenv.MustHaveExec(t) ep, err := os.Executable() if err != nil { t.Fatalf("Executable failed: %v", err) -- cgit v1.3-5-g9baa