diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-05-03 17:15:54 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-05-03 17:15:54 +0000 |
commit | 16df7038715e9644dc3e23984439731db4333e57 (patch) | |
tree | d0fe7dedd894fd36184ad6e25c1183c241eb365b /libgo/go/os | |
parent | 38fa938bbf94dcd06696dfd890d386f004e34604 (diff) | |
download | gcc-16df7038715e9644dc3e23984439731db4333e57.zip gcc-16df7038715e9644dc3e23984439731db4333e57.tar.gz gcc-16df7038715e9644dc3e23984439731db4333e57.tar.bz2 |
os/user: disable TestGroupIds for AIX
The corresponding Go Toolchain patch is CL 164039
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/175079
From-SVN: r270857
Diffstat (limited to 'libgo/go/os')
-rw-r--r-- | libgo/go/os/user/user_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libgo/go/os/user/user_test.go b/libgo/go/os/user/user_test.go index 2563077..eeb24dd 100644 --- a/libgo/go/os/user/user_test.go +++ b/libgo/go/os/user/user_test.go @@ -129,6 +129,9 @@ func TestLookupGroup(t *testing.T) { func TestGroupIds(t *testing.T) { checkGroup(t) + if runtime.GOOS == "aix" { + t.Skip("skipping GroupIds, see golang.org/issue/30563") + } if runtime.GOOS == "solaris" { t.Skip("skipping GroupIds, see golang.org/issue/14709") } |