mirror of
https://github.com/golang/go
synced 2024-11-19 00:14:39 -07:00
runtime: skip test on darwin/arm
Needs the Go tool, which we do not have on iOS. (No Fork.) Change-Id: Iedf69f5ca81d66515647746546c9b304c8ec10c4 Reviewed-on: https://go-review.googlesource.com/6102 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
This commit is contained in:
parent
433c1ad140
commit
1e0e2ffb8d
@ -98,6 +98,10 @@ func TestRuntimeGogoBytes(t *testing.T) {
|
|||||||
switch GOOS {
|
switch GOOS {
|
||||||
case "android", "nacl":
|
case "android", "nacl":
|
||||||
t.Skipf("skipping on %s", GOOS)
|
t.Skipf("skipping on %s", GOOS)
|
||||||
|
case "darwin":
|
||||||
|
if GOARCH == "arm" {
|
||||||
|
t.Skipf("skipping on %s/%s", GOOS, GOARCH)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dir, err := ioutil.TempDir("", "go-build")
|
dir, err := ioutil.TempDir("", "go-build")
|
||||||
@ -261,8 +265,8 @@ func TestTrailingZero(t *testing.T) {
|
|||||||
n int64
|
n int64
|
||||||
z struct{}
|
z struct{}
|
||||||
}
|
}
|
||||||
if unsafe.Sizeof(T2{}) != 8 + unsafe.Sizeof(Uintreg(0)) {
|
if unsafe.Sizeof(T2{}) != 8+unsafe.Sizeof(Uintreg(0)) {
|
||||||
t.Errorf("sizeof(%#v)==%d, want %d", T2{}, unsafe.Sizeof(T2{}), 8 + unsafe.Sizeof(Uintreg(0)))
|
t.Errorf("sizeof(%#v)==%d, want %d", T2{}, unsafe.Sizeof(T2{}), 8+unsafe.Sizeof(Uintreg(0)))
|
||||||
}
|
}
|
||||||
type T3 struct {
|
type T3 struct {
|
||||||
n byte
|
n byte
|
||||||
|
Loading…
Reference in New Issue
Block a user