From: Joel Sing Date: Mon, 7 Oct 2013 16:12:17 +0000 (-0700) Subject: os/user: enable tests on all supported platforms X-Git-Tag: go1.2rc2~60 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fba015ecb415ecd84b2d2e2c98f1a6efc09fbd5b;p=gostls13.git os/user: enable tests on all supported platforms All of the currently supported platforms have a working user implementation and do not use stubs. As a result, enable the tests on all platforms rather than whitelisting. R=golang-dev, dave, iant CC=golang-dev https://golang.org/cl/14454044 --- diff --git a/src/pkg/os/user/user_test.go b/src/pkg/os/user/user_test.go index 0421894bac..9d9420e809 100644 --- a/src/pkg/os/user/user_test.go +++ b/src/pkg/os/user/user_test.go @@ -13,12 +13,6 @@ func check(t *testing.T) { if !implemented { t.Skip("user: not implemented; skipping tests") } - switch runtime.GOOS { - case "linux", "freebsd", "darwin", "windows", "plan9": - // test supported - default: - t.Skipf("user: Lookup not implemented on %q; skipping test", runtime.GOOS) - } } func TestCurrent(t *testing.T) {