diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-16 19:27:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-16 19:27:44 +0000 |
commit | 1801babeb534c11ead8c847b6a9d71e692fd3330 (patch) | |
tree | f9930e4db859a2e4a5693ce6b08a607be27aefd2 /debian | |
parent | Adding debian version 1.22.2-1. (diff) | |
download | golang-1.22-1801babeb534c11ead8c847b6a9d71e692fd3330.tar.xz golang-1.22-1801babeb534c11ead8c847b6a9d71e692fd3330.zip |
Adding debian version 1.22.2-2.debian/1.22.2-2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/patches/0002-Skip-flaky-TestCrashDumpsAllThreads-on-s390x.patch | 24 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 33 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index ba473d6..df450ee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +golang-1.22 (1.22.2-2) unstable; urgency=medium + + * Team upload + * Skip flaky TestCrashDumpsAllThreads on s390x (LP: #2061742) + https://github.com/golang/go/issues/64650 + + -- Shengjing Zhu <zhsj@debian.org> Tue, 16 Apr 2024 16:13:31 +0800 + golang-1.22 (1.22.2-1) unstable; urgency=medium * Team upload diff --git a/debian/patches/0002-Skip-flaky-TestCrashDumpsAllThreads-on-s390x.patch b/debian/patches/0002-Skip-flaky-TestCrashDumpsAllThreads-on-s390x.patch new file mode 100644 index 0000000..e94963f --- /dev/null +++ b/debian/patches/0002-Skip-flaky-TestCrashDumpsAllThreads-on-s390x.patch @@ -0,0 +1,24 @@ +From: Shengjing Zhu <zhsj@debian.org> +Date: Tue, 16 Apr 2024 16:04:03 +0800 +Subject: Skip flaky TestCrashDumpsAllThreads on s390x + +Bug: https://github.com/golang/go/issues/64650 +--- + src/runtime/crash_unix_test.go | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/src/runtime/crash_unix_test.go b/src/runtime/crash_unix_test.go +index 20a7ca6..23cc273 100644 +--- a/src/runtime/crash_unix_test.go ++++ b/src/runtime/crash_unix_test.go +@@ -63,6 +63,10 @@ func TestCrashDumpsAllThreads(t *testing.T) { + t.Skipf("skipping; flaky on %s", runtime.GOARCH) + } + ++ if runtime.GOARCH == "s390x" { ++ t.Skipf("skipping; flaky on %s", runtime.GOARCH) ++ } ++ + switch runtime.GOOS { + case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "illumos", "solaris": + default: diff --git a/debian/patches/series b/debian/patches/series index 4764021..a2455da 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ 0001-Skip-flaky-TestCrashDumpsAllThreads-on-mips64le.patch +0002-Skip-flaky-TestCrashDumpsAllThreads-on-s390x.patch |