diff options
Diffstat (limited to 'libgo/misc')
-rw-r--r-- | libgo/misc/cgo/test/cthread_unix.c | 2 | ||||
-rw-r--r-- | libgo/misc/cgo/test/issue18146.go | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libgo/misc/cgo/test/cthread_unix.c b/libgo/misc/cgo/test/cthread_unix.c index 6323e4980e8..247d636d06d 100644 --- a/libgo/misc/cgo/test/cthread_unix.c +++ b/libgo/misc/cgo/test/cthread_unix.c @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux netbsd openbsd solaris +// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris #include <pthread.h> #include "_cgo_export.h" diff --git a/libgo/misc/cgo/test/issue18146.go b/libgo/misc/cgo/test/issue18146.go index 3c600463f03..a58aa1bb0f8 100644 --- a/libgo/misc/cgo/test/issue18146.go +++ b/libgo/misc/cgo/test/issue18146.go @@ -50,6 +50,8 @@ func test18146(t *testing.T) { nproc = 6 case "darwin", "dragonfly", "freebsd", "netbsd", "openbsd": nproc = 7 + case "aix": + nproc = 9 } if setNproc { var rlim syscall.Rlimit |