]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
os/user: disable TestGroupIds for AIX
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 3 May 2019 17:15:54 +0000 (17:15 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 3 May 2019 17:15:54 +0000 (17:15 +0000)
    The corresponding Go Toolchain patch is CL 164039

    Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/175079

From-SVN: r270857

gcc/go/gofrontend/MERGE
libgo/go/os/user/user_test.go

index 0203eee5d27cf14294140e19bab3578be4620894..a1bcb4b0d9d891574f37988d0c483861ee10a8b9 100644 (file)
@@ -1,4 +1,4 @@
-7e590184ae1ebc02e1b2577de00cf4fe842217dc
+208521930c9b5adcfb495799ee01b6aec86c2ccf
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index 2563077eb2e97d6274bc6c1c7fb21fe45b1b88e9..eeb24dd0e00d2cc4332f525274b63b280692bf28 100644 (file)
@@ -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")
        }