diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 13:16:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 13:16:42 +0000 |
commit | 073a8e76266c6f87b605b8cb46bfca3109ade460 (patch) | |
tree | f974eea97fec3e7a9d84d674ca1771fa2e2e486e /debian/patches/0003-cmd-dist-increase-default-timeout-scale-for-arm.patch | |
parent | Adding upstream version 1.18.10. (diff) | |
download | golang-1.18-debian.tar.xz golang-1.18-debian.zip |
Adding debian version 1.18.10-1.debian/1.18.10-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/0003-cmd-dist-increase-default-timeout-scale-for-arm.patch')
-rw-r--r-- | debian/patches/0003-cmd-dist-increase-default-timeout-scale-for-arm.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/patches/0003-cmd-dist-increase-default-timeout-scale-for-arm.patch b/debian/patches/0003-cmd-dist-increase-default-timeout-scale-for-arm.patch new file mode 100644 index 0000000..7dc8a00 --- /dev/null +++ b/debian/patches/0003-cmd-dist-increase-default-timeout-scale-for-arm.patch @@ -0,0 +1,29 @@ +From: Balint Reczey <balint.reczey@canonical.com> +Date: Mon, 31 Aug 2020 13:14:51 +0200 +Subject: [PATCH] cmd/dist: increase default timeout scale for arm + +Forwarded: https://github.com/golang/go/issues/43002 + +Most developers use (faster) amd64 machines setting the test timeouts, +but test may run on slower arm ones and also different tests may suffer +different relative slowdown on the arm CPUs. + +Due to those two varying factors it is safer to allow a higher timeout +scale on arm to avoid tests timing out. +--- + src/cmd/dist/test.go | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go +index d9eb9c3..c82d746 100644 +--- a/src/cmd/dist/test.go ++++ b/src/cmd/dist/test.go +@@ -173,7 +173,7 @@ func (t *tester) run() { + t.timeoutScale = 1 + switch goarch { + case "arm": +- t.timeoutScale = 2 ++ t.timeoutScale = 3 + case "mips", "mipsle", "mips64", "mips64le": + t.timeoutScale = 4 + } |