Commit 2b4f6d2c authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Increased test timeout even further

parent a1731fd3
......@@ -57,17 +57,17 @@ temporary:
tar xf go1.22.8.src.tar.gz
if [ "$(HOSTTYPE)" = "aarch64" ]; then \
tar xf go-linux-arm64-bootstrap.tbz ; \
cd go/src && GOROOT_BOOTSTRAP=$(CURDIR)/go-linux-arm64-bootstrap GOCACHE=/tmp/gocache GO_TEST_TIMEOUT_SCALE=40 ./all.bash ; \
cd go/src && GOROOT_BOOTSTRAP=$(CURDIR)/go-linux-arm64-bootstrap GOCACHE=/tmp/gocache GO_TEST_TIMEOUT_SCALE=100 ./all.bash ; \
rm -rf $(CURDIR)/go-linux-arm64-bootstrap ; \
elif [ "$(HOSTTYPE)" = "x86_64" ]; then \
tar xf go-linux-amd64-bootstrap.tbz ; \
ln -s /lib /lib64 ; \
cd go/src && GOROOT_BOOTSTRAP=$(CURDIR)/go-linux-amd64-bootstrap GOCACHE=/tmp/gocache GO_TEST_TIMEOUT_SCALE=40 ./all.bash ; \
cd go/src && GOROOT_BOOTSTRAP=$(CURDIR)/go-linux-amd64-bootstrap GOCACHE=/tmp/gocache GO_TEST_TIMEOUT_SCALE=100 ./all.bash ; \
rm -rf /lib64 ; \
rm -rf $(CURDIR)/go-linux-amd64-bootstrap ; \
else \
tar xf go-linux-arm-bootstrap.tbz ; \
cd go/src && GOROOT_BOOTSTRAP=$(CURDIR)/go-linux-arm-bootstrap GOCACHE=/tmp/gocache GO_TEST_TIMEOUT_SCALE=40 ./all.bash ; \
cd go/src && GOROOT_BOOTSTRAP=$(CURDIR)/go-linux-arm-bootstrap GOCACHE=/tmp/gocache GO_TEST_TIMEOUT_SCALE=100 ./all.bash ; \
rm -rf $(CURDIR)/go-linux-arm-bootstrap ; \
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment