From fba015ecb415ecd84b2d2e2c98f1a6efc09fbd5b Mon Sep 17 00:00:00 2001 From: Joel Sing Date: Mon, 7 Oct 2013 09:12:17 -0700 Subject: [PATCH] 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 --- src/pkg/os/user/user_test.go | 6 ------ 1 file changed, 6 deletions(-) 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) { -- 2.50.0