"issue48230.go", // go/types doesn't check validity of //go:xxx directives
"issue49767.go", // go/types does not have constraints on channel element size
"issue49814.go", // go/types does not have constraints on array size
+
+ // These tests requires runtime/cgo.Incomplete, which is only available on some platforms.
+ // However, types2 does not know about build constraints.
+ "bug514.go",
+ "issue40954.go",
+ "issue42032.go",
+ "issue42076.go",
+ "issue46903.go",
+ "issue51733.go",
)
}
"issue48230.go", // go/types doesn't check validity of //go:xxx directives
"issue49767.go", // go/types does not have constraints on channel element size
"issue49814.go", // go/types does not have constraints on array size
+
+ // These tests requires runtime/cgo.Incomplete, which is only available on some platforms.
+ // However, go/types does not know about build constraints.
+ "bug514.go",
+ "issue40954.go",
+ "issue42032.go",
+ "issue42076.go",
+ "issue46903.go",
+ "issue51733.go",
)
}
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build cgo
+//go:build cgo && !aix
package main
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build cgo
+//go:build cgo && !aix
package main
// source code is governed by a BSD-style license that can be found in
// the LICENSE file.
-//go:build cgo
+//go:build cgo && !aix
package main
// source code is governed by a BSD-style license that can be found in
// the LICENSE file.
-//go:build cgo
+//go:build cgo && !aix
package main
// run
-//go:build goexperiment.unified && cgo
-// +build goexperiment.unified,cgo
+//go:build goexperiment.unified && cgo && !aix
// TODO(mdempsky): Enable test unconditionally. This test should pass
// for non-unified mode too.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build cgo
+//go:build cgo && !aix
package main