We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bcc138 commit a34a97dCopy full SHA for a34a97d
src/cmd/compile/internal/test/issue53888_test.go
@@ -2,15 +2,21 @@
2
// Use of this source code is governed by a BSD-style
3
// license that can be found in the LICENSE file.
4
5
-//go:build !race
+//go:build !race && !goexperiment.unified
6
7
package test
8
9
import (
10
+ "internal/testenv"
11
+ "strings"
12
"testing"
13
)
14
15
+// TODO(cuonglm,mdempsky): figure out why Unifed IR failed?
16
func TestAppendOfMake(t *testing.T) {
17
+ if strings.HasSuffix(testenv.Builder(), "-noopt") {
18
+ t.Skip("append of make optimization is disabled on noopt builder")
19
+ }
20
for n := 32; n < 33; n++ { // avoid stack allocation of make()
21
b := make([]byte, n)
22
f := func() {
0 commit comments