File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,13 @@ import (
10
10
"bytes"
11
11
"fmt"
12
12
"go/build"
13
- exec "golang.org/x/sys/execabs"
14
13
"io/ioutil"
15
14
"os"
16
15
"runtime"
17
16
"strings"
18
17
"sync"
18
+
19
+ exec "golang.org/x/sys/execabs"
19
20
)
20
21
21
22
// Testing is an abstraction of a *testing.T.
@@ -247,8 +248,9 @@ func NeedsGoBuild(t Testing) {
247
248
// It should be called from within a TestMain function.
248
249
func ExitIfSmallMachine () {
249
250
switch os .Getenv ("GO_BUILDER_NAME" ) {
250
- case "linux-arm" :
251
- fmt .Fprintln (os .Stderr , "skipping test: linux-arm builder lacks sufficient memory (https://golang.org/issue/32834)" )
251
+ case "linux-arm-scaleway" :
252
+ // "linux-arm" was renamed to "linux-arm-scaleway" in CL 303230.
253
+ fmt .Fprintln (os .Stderr , "skipping test: linux-arm-scaleway builder lacks sufficient memory (https://golang.org/issue/32834)" )
252
254
os .Exit (0 )
253
255
case "plan9-arm" :
254
256
fmt .Fprintln (os .Stderr , "skipping test: plan9-arm builder lacks sufficient memory (https://golang.org/issue/38772)" )
You can’t perform that action at this time.
0 commit comments