We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cbfe8c commit 08725f9Copy full SHA for 08725f9
src/crypto/internal/cryptotest/allocations.go
@@ -32,6 +32,12 @@ func SkipTestAllocations(t *testing.T) {
32
t.Skip("skipping allocations test on plan9")
33
}
34
35
+ // s390x deviates from other assembly implementations and is very hard to
36
+ // test due to the lack of LUCI builders. See #67307.
37
+ if runtime.GOARCH == "s390x" {
38
+ t.Skip("skipping allocations test on s390x")
39
+ }
40
+
41
// Some APIs rely on inliner and devirtualization to allocate on the stack.
42
testenv.SkipIfOptimizationOff(t)
43
0 commit comments