From f686a2890b34996455c7d7aba9a0efba74b613f5 Mon Sep 17 00:00:00 2001 From: "Joshua M. Clulow" Date: Mon, 29 Apr 2019 13:50:49 +0000 Subject: all: add new GOOS=illumos, split out of GOOS=solaris Like GOOS=android which implies the "linux" build tag, GOOS=illumos implies the "solaris" build tag. This lets the existing ecosystem of packages still work on illumos, but still permits packages to start differentiating between solaris and illumos. Fixes #20603 Change-Id: I8f4eabf1a66060538dca15d7658c1fbc6c826622 Reviewed-on: https://go-review.googlesource.com/c/go/+/174457 Run-TryBot: Benny Siegert Reviewed-by: Benny Siegert Reviewed-by: Brad Fitzpatrick TryBot-Result: Gobot Gobot --- src/os/exec/exec_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/exec/exec_test.go') diff --git a/src/os/exec/exec_test.go b/src/os/exec/exec_test.go index a157810eed..f9d73060a3 100644 --- a/src/os/exec/exec_test.go +++ b/src/os/exec/exec_test.go @@ -831,7 +831,7 @@ func TestHelperProcess(*testing.T) { // the cloned file descriptors that result from opening // /dev/urandom. // https://golang.org/issue/3955 - case "solaris": + case "illumos", "solaris": // TODO(aram): This fails on Solaris because libc opens // its own files, as it sees fit. Darwin does the same, // see: https://golang.org/issue/2603 -- cgit v1.3