Commit 570a2b0e authored by Elias Naur's avatar Elias Naur

cmd/dist: skip testcarchive test in Android and iOS

CL 20892 converted the misc/cgo/testcarchive test to Go.
Unfortunately, dist does not (yet) support tests running off the host
so the testcarchive is disabled for now.

For #14318

Change-Id: Iab3d0a7b5309187a603b48f22a7fa736f089f89d
Reviewed-on: https://go-review.googlesource.com/21070Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
parent 0bb62299
......@@ -496,7 +496,9 @@ func (t *tester) registerTests() {
},
})
}
if t.supportedBuildmode("c-archive") {
if t.supportedBuildmode("c-archive") && t.goos != "android" && !t.iOS() {
// TODO(elias.naur): reenable on android and iOS
// golang.org/issue/8345
t.registerTest("testcarchive", "../misc/cgo/testcarchive", "go", "test", "carchive_test.go")
}
if t.supportedBuildmode("c-shared") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment