@@ -1082,6 +1082,13 @@ func init() {
1082
1082
"GOARM=5" ,
1083
1083
"GO_TEST_TIMEOUT_SCALE=4" , // arm is normally 2; double that.
1084
1084
},
1085
+ ShouldRunDistTest : func (distTest string , isTry bool ) bool {
1086
+ if strings .Contains (distTest , "vendor/github.com/google/pprof" ) {
1087
+ // Not worth it. And broken.
1088
+ return false
1089
+ }
1090
+ return true
1091
+ },
1085
1092
})
1086
1093
addBuilder (BuildConfig {
1087
1094
Name : "nacl-386" ,
@@ -1113,12 +1120,26 @@ func init() {
1113
1120
HostType : "host-openbsd-386-60" ,
1114
1121
ShouldRunDistTest : noTestDir ,
1115
1122
MaxAtOnce : 1 ,
1123
+ env : []string {
1124
+ // cmd/go takes ~192 seconds on openbsd-386
1125
+ // now, which is over the 180 second default
1126
+ // dist test timeout. So, bump this builder
1127
+ // up:
1128
+ "GO_TEST_TIMEOUT_SCALE=2" ,
1129
+ },
1116
1130
})
1117
1131
addBuilder (BuildConfig {
1118
1132
Name : "openbsd-386-62" ,
1119
1133
HostType : "host-openbsd-386-62" ,
1120
1134
ShouldRunDistTest : noTestDir ,
1121
1135
MaxAtOnce : 1 ,
1136
+ env : []string {
1137
+ // cmd/go takes ~192 seconds on openbsd-386
1138
+ // now, which is over the 180 second default
1139
+ // dist test timeout. So, bump this builder
1140
+ // up:
1141
+ "GO_TEST_TIMEOUT_SCALE=2" ,
1142
+ },
1122
1143
})
1123
1144
addBuilder (BuildConfig {
1124
1145
Name : "openbsd-amd64-62" ,
0 commit comments