andreas pushed a commit to branch core-packages-team
in repository guix.

commit 5066087c1b684cc605eaa9a94979de96eca55a3b
Author: Janneke Nieuwenhuizen <jann...@gnu.org>
AuthorDate: Sun Dec 8 10:44:34 2024 +0100

    gnu: go-1.21.5: Skip test failing with gcc-14.
    
    * gnu/packages/golang.scm (go-1.21)[arguments]: Add "remove-failing-test" 
phase.
    
    Change-Id: Ie12c23c41f82e752cad8b4f7f2689628f05670af
---
 gnu/packages/golang.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 791e2db9f9..028ea5a742 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -919,6 +919,13 @@ in the style of communicating sequential processes 
(@dfn{CSP}).")
                 (substitute* "src/cmd/go/testdata/script/cgo_path_space.txt"
                   (("/bin/sh") (which "sh")))))
 
+            (add-after 'unpack 'remove-failing-test
+              (lambda _
+                ;; This test fails with newer gcc's
+                ;; https://github.com/golang/go/issues/57691
+                (substitute* "src/cmd/cgo/internal/testsanitizers/asan_test.go"
+                  ((".*arena_fail.*") ""))))
+
             (add-after 'enable-external-linking 'enable-external-linking-1.21
               (lambda _
                 ;; Invoke GCC to link any archives created with GCC (that is,

Reply via email to