Compare commits
13 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
957aa1d91a | ||
|
|
b6565c0605 | ||
|
|
78bcda6431 | ||
|
|
4e045f180b | ||
|
|
a9ab6d9816 | ||
|
|
aee445a4d9 | ||
|
|
069610560b | ||
|
|
199a921361 | ||
|
|
23f8a14843 | ||
|
|
468b751ca5 | ||
|
|
f3e22b9b86 | ||
|
|
27b88c1852 | ||
|
|
bfe73308b6 |
5 changed files with 55 additions and 15 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
|
@ -141,3 +141,14 @@
|
|||
/go1.21.1.src.tar.gz
|
||||
/go1.21.3.src.tar.gz
|
||||
/go1.21.4.src.tar.gz
|
||||
/go1.21.5.src.tar.gz
|
||||
/go1.21.6.src.tar.gz
|
||||
/go1.21.7.src.tar.gz
|
||||
/go1.21.8.src.tar.gz
|
||||
/go1.21.9.src.tar.gz
|
||||
/go1.21.10.src.tar.gz
|
||||
/go1.21.11.src.tar.gz
|
||||
/go1.21.12.src.tar.gz
|
||||
/go1.22.7.src.tar.gz
|
||||
/go1.22.8.src.tar.gz
|
||||
/go1.22.9.src.tar.gz
|
||||
|
|
|
|||
28
0005-Skip-TestCrashDumpsAllThreads.patch
Normal file
28
0005-Skip-TestCrashDumpsAllThreads.patch
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
From c0c22e2aa7d1901c97da04f834ce9c7b9e38be80 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Alejandro=20S=C3=A1ez?= <asm@redhat.com>
|
||||
Date: Sun, 11 Feb 2024 12:08:35 +0100
|
||||
Subject: [PATCH] Skip TestCrashDumpsAllThreads
|
||||
|
||||
See golang.org/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 123a462423..a0034d6455 100644
|
||||
--- a/src/runtime/crash_unix_test.go
|
||||
+++ b/src/runtime/crash_unix_test.go
|
||||
@@ -74,6 +74,10 @@ func TestCrashDumpsAllThreads(t *testing.T) {
|
||||
t.Skip("skipping; SIGQUIT is blocked, see golang.org/issue/19196")
|
||||
}
|
||||
|
||||
+ if runtime.GOOS == "linux" && runtime.GOARCH == "s390x" {
|
||||
+ t.Skip("skipping; frequent TestCrashDumpsAllThreads failures on linux/s390x, see golang.org/issue/64650")
|
||||
+ }
|
||||
+
|
||||
testenv.MustHaveGoBuild(t)
|
||||
|
||||
if strings.Contains(os.Getenv("GOFLAGS"), "mayMoreStackPreempt") {
|
||||
--
|
||||
2.43.0
|
||||
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
This repository is maintained by packit.
|
||||
https://packit.dev/
|
||||
The file was generated using packit 0.78.2.post2+g81828af.
|
||||
The file was generated using packit 0.102.2.post1.dev4+g3142fcf8.
|
||||
|
|
|
|||
27
golang.spec
27
golang.spec
|
|
@ -95,9 +95,9 @@
|
|||
%endif
|
||||
|
||||
# Comment out go_prerelease and go_patch as needed
|
||||
%global go_api 1.21
|
||||
%global go_api 1.22
|
||||
#global go_prerelease rc3
|
||||
%global go_patch 4
|
||||
%global go_patch 9
|
||||
|
||||
%global go_version %{go_api}%{?go_patch:.%{go_patch}}%{?go_prerelease:~%{go_prerelease}}
|
||||
%global go_source %{go_api}%{?go_patch:.%{go_patch}}%{?go_prerelease}
|
||||
|
|
@ -130,17 +130,17 @@ BuildRequires: pcre2-devel, glibc-static, perl-interpreter, procps-ng
|
|||
Provides: go = %{version}-%{release}
|
||||
|
||||
# Bundled/Vendored provides generated by bundled-deps.sh based on the in tree module data
|
||||
Provides: bundled(golang(github.com/google/pprof)) = 0.0.0.20221118152302.e6195bd50e26
|
||||
Provides: bundled(golang(github.com/ianlancetaylor/demangle)) = 0.0.0.20220319035150.800ac71e25c2
|
||||
Provides: bundled(golang(golang.org/x/arch)) = 0.4.0
|
||||
Provides: bundled(golang(golang.org/x/crypto)) = 0.11.1.0.20230711161743.2e82bdd1719d
|
||||
Provides: bundled(golang(golang.org/x/mod)) = 0.12.0
|
||||
Provides: bundled(golang(golang.org/x/net)) = 0.12.1.0.20231027154334.5ca955b1789c
|
||||
Provides: bundled(golang(golang.org/x/sync)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/sys)) = 0.10.0
|
||||
Provides: bundled(golang(golang.org/x/term)) = 0.10.0
|
||||
Provides: bundled(golang(golang.org/x/text)) = 0.11.0
|
||||
Provides: bundled(golang(golang.org/x/tools)) = 0.11.1.0.20230712164437.1ca21856af7b
|
||||
Provides: bundled(golang(github.com/google/pprof)) = 0.0.0.20230811205829.9131a7e9cc17
|
||||
Provides: bundled(golang(github.com/ianlancetaylor/demangle)) = 0.0.0.20230524184225.eabc099b10ab
|
||||
Provides: bundled(golang(golang.org/x/arch)) = 0.6.0
|
||||
Provides: bundled(golang(golang.org/x/crypto)) = 0.16.1.0.20231129163542.152cdb1503eb
|
||||
Provides: bundled(golang(golang.org/x/mod)) = 0.14.0
|
||||
Provides: bundled(golang(golang.org/x/net)) = 0.19.1.0.20240412193750.db050b07227e
|
||||
Provides: bundled(golang(golang.org/x/sync)) = 0.5.0
|
||||
Provides: bundled(golang(golang.org/x/sys)) = 0.15.0
|
||||
Provides: bundled(golang(golang.org/x/term)) = 0.15.0
|
||||
Provides: bundled(golang(golang.org/x/text)) = 0.14.0
|
||||
Provides: bundled(golang(golang.org/x/tools)) = 0.16.2.0.20231218185909.83bceaf2424d
|
||||
|
||||
Requires: %{name}-bin = %{version}-%{release}
|
||||
Requires: %{name}-src = %{version}-%{release}
|
||||
|
|
@ -148,6 +148,7 @@ Requires: go-filesystem
|
|||
|
||||
Patch1: 0001-Modify-go.env.patch
|
||||
Patch4: 0004-cmd-link-use-gold-on-ARM-ARM64-only-if-gold-is-avail.patch
|
||||
Patch5: 0005-Skip-TestCrashDumpsAllThreads.patch
|
||||
|
||||
# Having documentation separate was broken
|
||||
Obsoletes: %{name}-docs < 1.1-4
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (go1.21.4.src.tar.gz) = a6019d51876d7705f7737cddae748f9df3b4e1b40d678094465d2e81b18a4a99b93c3979d318d6c0c6d314e44554894105d07665b7d81acbbfd80203d3ed95bc
|
||||
SHA512 (go1.22.9.src.tar.gz) = d9237212e82f6acb40685fdbe75f3e5c6a6340329c31a885e7f241a5868b5835052e90063db849a5960c8242da2971c55a3a3cab2c0e0e62754b8c33344887cf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue