Skip to content

Commit

Permalink
internal/wycheproof: skip failing test on 32-bit arm
Browse files Browse the repository at this point in the history
Fixes golang/go#36164

Change-Id: I4248cb3e25346f6859c473b729811b36ac6cf872
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/212625
Reviewed-by: Filippo Valsorda <[email protected]>
  • Loading branch information
katiehockman committed Dec 27, 2019
1 parent becbf70 commit 53104e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/wycheproof/wycheproof_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func TestMain(m *testing.M) {
log.Printf("skipping test because 'go' command is unavailable: %v", err)
os.Exit(0)
}
if runtime.GOARCH == "386" {
if runtime.GOARCH == "386" || runtime.GOARCH == "arm" {
os.Exit(0) // skip tests
}

Expand Down

0 comments on commit 53104e6

Please sign in to comment.